I have been using the post method, but that only works for one other page…how do I go about making variables available to more than one page?
U can not do it in ASP.NET but If you’re using ASP 3.0 there is way to do this is to use session variables, which is not too effective in my opinion.
for session variables – use the request.form method like this:
session(“your_session_variable”) = request.form(“your_form_variable”)
then whenever you want to reference that session variable throughout the remainder of the session, just call it like any other… for example
response.write session(“your_session_variable”)
Leave a Reply
You must be logged in to post a comment.