I have a requirement from my client to get the query parameter of an URL with VBScript, the URL is like below:
Need to get the value of "sn".
What should the code be like?
No idea how to use VBScript to get the parameter.
I got the code:
dim sn
sn = Request.QueryString("sn")
It works.