I need to pass some data from a classic ASP application to my ASP.NET app using the POST method (can’t use GET sorry) in a form.
This doesn’t seem to work if my action is the target aspx page but my ASP.NET app is using forms authentication, because it looks like somewhere in the pipeline my data is lost, given that the Request.Form collection is null in the Page_Load method of my login page.
If I disable forms authentication, the target page receives the posted data without a problem.
Do you know how can I work-around this problem? When or where could I obtain this data?
Thanks in advance!
A possibility might be to transfer the posted headers into a session object you maintain in your ASPX side that would then be killed once its purpose is complete.