
How to pass value from an ASP page to another ASP page?
Best I could say is have the first post the variable with a query string,
and have the second retrieve it with the variable =
Request.ServerVariables("QUERY_STRING")
--Rob
Quote:
> Hi,
> In my ASP page(Time.asp), I have a field('taskdt') and a button('Add
> Expenses') in a form. User enters the date into 'taskdt' field. User
clicks
> on the 'Add Expenses' button and go to another ASP page(Expenses.asp).
> What I want to do is: pass the value that user entered in 'taskdt' field
in
> Time.asp to Expenses.asp page, and display this value. How do I do this?
> Thanks.
> Jun