passing values....

r4k35h

Member
Joined
Sep 4, 2006
Messages
20
Programming Experience
Beginner
Hi,
I have a trouble with passing values from an aspx page to an HTML page, the conditions put forth to me are that values are inputted to the controls present in a aspx page when a button is clicked the aspx page should close and redirect to a HTML page where some of the inputted values are made available to view.
The problem is that the querystring used to pass the values should not be visible on the address bar and the HTML window shouldn't popup(due to pop-up blockers)

If anyone could help me please do so..
Thank You
 
If you don't want redirect in same window you got yourself a popup. Data transfer to a plain Html page can only be done via page address. So neither of your requests are possible.
 
I can think of one alternative to passing parameters to address, but it will only work if there is only one single request, this is: asp.net page write parameter data to xml file, html page read the xml data file with help of Javascript.
 
Back
Top