Hi,
Is there a proper term for the commands(?) following the question mark in a URL?
e.g. http://vbforums.com/newthread.php?s=&action=newthread&forumid=4
Thanks,
Al.
Printable View
Hi,
Is there a proper term for the commands(?) following the question mark in a URL?
e.g. http://vbforums.com/newthread.php?s=&action=newthread&forumid=4
Thanks,
Al.
QueryString
Thanks for the reply.
So QueryString isn't an ASP specific term.
Al.
Well, specifically, you can use the QueryString collection of the Response object to get the querystring for the page. For example, Request.QueryString.Item("action") would return "newthread" in your example.
Or, you could just use Request.QueryString, which would return the string "s=&action=newthread&forumid=4" in your example.
the official W3C term is query.