Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does the symbol ? mean in a URL?

What does the symbol ? mean in a URL?

like image 751
Steven Hammons Avatar asked Mar 15 '11 04:03

Steven Hammons


2 Answers

That portion of the URL (ie. after the ?) is known as the query string.
http://en.wikipedia.org/wiki/Query_string

It is used to pass parameters into web applications.

For example, in ASP.NET I might have an .aspx page like so:
http://example.com/myapp/default.aspx

Inside my codebehind for that page I can look for the presence of any query string parameters:

string paramValue = Request.QueryString["param"];

So if someone visits my page with the URL of http://example.com/myapp/default.aspx?param=abcd
Then the value of paramValue will be "abcd".

like image 133
Coxy Avatar answered Sep 23 '22 17:09

Coxy


RFC for http protocol, section 3.2.2 http URL

"?" - is delimiter between "absolute path" and "query"

like image 44
CyberDem0n Avatar answered Sep 20 '22 17:09

CyberDem0n