Forum Moderators: open
How do I pass this info to appear on another page which lists the bids? (All other fields were preprogrammed to appear and get saved to Access, but I really don't need to save this field. Just want to add it quickly). Thanks! I know this is simple asp function, but I just don't know how to make it work...
Session("dtTime") = Trim(Request.Form("dtTime"))
so it goes into a session variable, which is automatically deleted when the user closes the browser, instead of going permanently in your access database.
You retrieve the value by putting this line of code:
dtTime = Session("dtTime")
That should be all.