To pass information between pages you can use <input type=hidden name="id" value=<%request("myvar")%>
Granted if the user views the page source they will the id and its value but it won't mean anything to them.
You can also pass the ID along in the url with <form action="myotherpage.asp?id
I tend to try and stay away from session variables as much as possible as the jury is still out on whether they are "good" to use, and how much more resource intensive they are in comparison to the other two methods.
Main Topics
Browse All Topics





by: dwarePosted on 2000-06-08 at 09:23:10ID: 2913787
in visual interdev use a pageobject design time control. put it on the page.. then go to the tab called scripts while you are in code view..
go to server objects scripts.. then from there use the "thisPage" object and the use it to invoke a function that you specified to set all the necessary values you need into session variables.