Reputation: 21416
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?
Upvotes: 2
Views: 343
Reputation: 13682
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.
Upvotes: 4