Request.QueryString("PC") would be equal to 10012404
and
Request.QueryString("CL") would be equal to 4
and
Request.QueryString("L1") would be equal to 10000000
and
Request.QueryString("L") would be equal to 10012000
for each d in Request.ServerVariables
response.write(d & "=" & Request.ServerVariables(d) & "<br>")
next
Web Development
Web development includes all aspects of presenting content on intranets and the Internet, including delivery development, protocols, languages and standards, server software, browser clients, databases and multimedia generation.
www.blah.com?PC=10012404&CL=4&L1=10000000&L2=10012000
Request.QueryString("PC") would be equal to 10012404
and
Request.QueryString("CL") would be equal to 4
and
Request.QueryString("L1") would be equal to 10000000
and
Request.QueryString("L") would be equal to 10012000