Sunil
Sunil

Reputation: 21416

Transfer string data from ASP classic to ASP.NET popup page

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

Answers (1)

Matthew Cox
Matthew Cox

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

Related Questions