I have a classic asp page from which I open a popup page in ASP.NET. How would I send data from classic ASP to ASP.Net popup without using query strings?
Asked
Active
Viewed 339 times
2
-
I really don't see the point :) If it is because you want to hide the data transfered you need to write it into a dabase or such. Using POST can do the trick, but it will NOT be invisible! The data will be stored in the browser and will be easily seen via fx Mozilla Firebug or such. – MicBehrens Nov 25 '11 at 18:19
1 Answers
4
You submit a POST to the new page containing the hidden values.
More specifically,
Have the values needed placed into a form on the old page. Then cause the form to submit as a POST targeting the new page.
Your new page will receives the Form variables and process them accordingly.

Matthew Cox
- 13,566
- 9
- 54
- 72