May 5, 1999 #1 021363 MIS May 5, 1999 2 US How do I pass a variable from a list box in aaa.asp to bbb.asp?
Feb 22, 2000 #2 Guest_imported New member Jan 1, 1970 0 Put the value in a Session (or Application) variable. In aaa.asp ca;; Session('myVar') = [value]. Get it in bbb.asp with xVar = Session('myVar') Upvote 0 Downvote
Put the value in a Session (or Application) variable. In aaa.asp ca;; Session('myVar') = [value]. Get it in bbb.asp with xVar = Session('myVar')
Apr 6, 2000 #3 Guest_imported New member Jan 1, 1970 0 You can also get at is using Remote Scripting, which lets you call object and methods on another. Upvote 0 Downvote