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?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.