Hi everyone,
Is it possible to pass only variables bt. ASP pages.
I have 3 asp pages.
In page1.asp, I have a text box text1.
When I submit this page, in page2.asp I use the contents of page1's text1 as var2= Request.form("text1") and on doing some db query, I get some value for text box text2 on page2.asp.
Now when I press the submit on page2, I want to have both values of text boxes of page1.asp and page2.asp. But now the problem is my page3.asp receives only the value of text2 and NOT text1 (var2).
So, I get var32 = Request.form("text2").
But this doesn't work -> var31=Request.form("var2");
How do I then get var2 from page2.asp on page3.asp. In other words how to get value of text1 from page1.asp on page3.asp ?
One way is to make a hidden textbox on page2 and store the value of text1 in it and retrieve it on page3. Is there a better way ?
Thanks,
Bipin
Is it possible to pass only variables bt. ASP pages.
I have 3 asp pages.
In page1.asp, I have a text box text1.
When I submit this page, in page2.asp I use the contents of page1's text1 as var2= Request.form("text1") and on doing some db query, I get some value for text box text2 on page2.asp.
Now when I press the submit on page2, I want to have both values of text boxes of page1.asp and page2.asp. But now the problem is my page3.asp receives only the value of text2 and NOT text1 (var2).
So, I get var32 = Request.form("text2").
But this doesn't work -> var31=Request.form("var2");
How do I then get var2 from page2.asp on page3.asp. In other words how to get value of text1 from page1.asp on page3.asp ?
One way is to make a hidden textbox on page2 and store the value of text1 in it and retrieve it on page3. Is there a better way ?
Thanks,
Bipin