M
Magnus
Hi!
This is my problem:
I want to go from page1 to page2,
and to get all the form variables from page1
to page2.
I have turned the viewstate and the sessionstate off,
and i really just want to get these variables the
oldfashioned way (ie via the request.form collection)
This is how im trying to do this:
I have a javascript that fires on page1 that
changes the action of its form to page2 and then submits
the page.
//page1 javascript
function test()
{
Form1.target="_blank";
Form1.action="page2.aspx";
Form1.submit();
}
but when i get to page2, the form collection
from page1 is gone...
+ the request object says i used method=GET...
can someone help me out here plz
This is my problem:
I want to go from page1 to page2,
and to get all the form variables from page1
to page2.
I have turned the viewstate and the sessionstate off,
and i really just want to get these variables the
oldfashioned way (ie via the request.form collection)
This is how im trying to do this:
I have a javascript that fires on page1 that
changes the action of its form to page2 and then submits
the page.
//page1 javascript
function test()
{
Form1.target="_blank";
Form1.action="page2.aspx";
Form1.submit();
}
but when i get to page2, the form collection
from page1 is gone...
+ the request object says i used method=GET...
can someone help me out here plz