I have website and winform projects, the site is virtual book shop, there's a part when you're done "buying" and the site generates reciept as aspx page based on session["Order"] value, i would like to be able to get to the reciept page from my winform project(while i pass my id parameter) , i figured i have two options to do that:
- to get values from my winform project and load the recipt page with it.
- to run a diffrent aspx page that allows me to input id.(easier way i think)
my main issue is i couldnt realise how to run aspx page from my winform project(and open port to use for it)using webdev tool.
the second issue is i'm not sure how to use sessions in winforms(in order to pass my parameter).
I googled a lot and found myself too confused.