I am passing varibles from one page to the next using the URL. For example \\server\page1?order=12345. The Front page database component uses this varible just fine. How can I use it in a VBScript.
You use the querystring collection to access this information. The collection will contain an entry for each value/data pair passed in the url.<br>
<br>
In the following example, the variable 'ordernum' will contain the value '12345'<br>
<br>
dim ordernum<br>
ordernum = Request.Querystring("order"<br>
<br>
-nick bulka
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.