I have created a hyperlink and used the edit hyperlink frontpage form to
assign a parameter (Dept=E).

This modified my URL to the following: http://nsb-engineering.htm?Dept=E

How do I get the parameter and its associated value from the URL using
vbscript?

Thanks,

David

Re: Retrieving HTML parameters using vbscript by Mike

Mike
Fri Apr 15 16:45:26 CDT 2005

<%
dim strDept
strDept = request.querystring("Dept")
%>


"David" <David@discussions.microsoft.com> wrote in message
news:C85351C9-1530-4A12-8752-51D1A02C6BE5@microsoft.com...
:I have created a hyperlink and used the edit hyperlink
frontpage form to
: assign a parameter (Dept=E).
:
: This modified my URL to the following:
http://nsb-engineering.htm?Dept=E
:
: How do I get the parameter and its associated value from
the URL using
: vbscript?
:
: Thanks,
:
: David