Top "Query-string" questions

The part of a URL after the ? (question mark), containing parameter=value pairs separated by & (ampersand).

How to build a query string for a URL in C#?

A common task when calling web resources from a code is building a query string to including all the necessary …

c# .net url query-string
Escaping ampersand in URL

I am trying to send a GET message that contains strings with ampersands and can't figure how to escape the …

http url get query-string query-parameters
How to obtain the query string from the current URL with JavaScript?

I have URL like this: http://localhost/PMApp/temp.htm?ProjectID=462 What I need to do is to get the …

javascript query-string
Passing multiple values for a single parameter in Reporting Services

I have several Multi-Select parameters in my report. I am trying to find a way to pass in multiple values …

sql reporting-services parameters query-string
How to send JSON instead of a query string with $.ajax?

Can someone explain in an easy way how to make jQuery send actual JSON instead of a query string? $.ajax({ …

javascript jquery json query-string
Sharing a URL with a query string on Twitter

I'm trying to put a Twitter share link in an email. Because this is in an email I can't rely …

twitter query-string share url-encoding
Does a `+` in a URL scheme/host/path represent a space?

I am aware that a + in the query string of a URL represents a space. Is this also the case …

url encoding query-string
Optional query string parameters in ASP.NET Web API

I need to implement the following WebAPI method: /api/books?author=XXX&title=XXX&isbn=XXX&somethingelse=…

c# url asp.net-web-api query-string
Add querystring parameters to link_to

I'm having difficultly adding querystring parameters to link_to UrlHelper. I have an Index view, for example, that has UI …

ruby-on-rails query-string
How to read values from the querystring with ASP.NET Core?

I'm building one RESTful API using ASP.NET Core MVC and I want to use querystring parameters to specify filtering …

c# http asp.net-core query-string .net-core