Retrieving HTML parameters using vbscript

D

David

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
 
M

Mike Mueller

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


: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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top