Tagged Questions
A query string is the part of a URL that contains data to be passed to web applications such as CGI programs.
363
votes
23answers
179k views
Get query string values in JavaScript
Is there a pluginless way of retrieving querystring values via jQuery (or without)? If so, how, and if not what plugin do you recommend?
107
votes
5answers
28k views
Best practice: escape, or encodeURI / encodeURIComponent
When encoding a query string to be sent to a web server - what is the best practice to use from javascript:
Use escape:
escape("% +&=");
OR
use encodeURI() / encodeURIComponent()
...
60
votes
17answers
30k views
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 parameters. While by all means no rocket science, there are some nifty details you need ...
33
votes
8answers
7k views
Is a https query string secure?
I am creating a secure web based API that uses HTTPS however if I allow the users to configure it (include sending password) using a query string will this also be secure or should I force it to be ...
28
votes
13answers
42k views
Adding a parameter to the URL with JavaScript
In a web application that makes use of AJAX calls, I need to submit a request but add a parameter to the end of the URL, for example:
Original URL:
http://server/myapp.php?id=10
Resulting URL:
...
27
votes
5answers
25k views
JavaScript query string
Is there any JavaScript library that makes a dictionary out of the query string, ASP.NET style?
Something that would be used like:
var query = window.location.querystring["query"]?
Is a "query ...
20
votes
7answers
9k views
Parse query string in JavaScript
I need to parse the query string www.mysite.com/default.aspx?dest=aboutus.aspx.
How do I get the dest variable in JavaScript?
19
votes
4answers
13k views
how do i access query string params in asp.net mvc?
I want to have different sorting and filtering applied on my view
I figured that i'll be passing sorting and filtering params through query string
<%= Html.ActionLink("Name", "Index", new { ...
17
votes
4answers
17k views
ASP.NET MVC QueryString defaults overriding supplied values?
Using ASP.NET MVC Preview 5 (though this has also been tried with the Beta), it appears that querystring defaults in a route override the value that is passed in on the query string. A repro is to ...
14
votes
1answer
1k views
Semicolon as URL query separator
Although it is strongly recommended (W3C source, via Wikipedia) for web servers to support semicolon as a separator of URL query items (in addition to ampersand), it does not seem to be generally ...
14
votes
3answers
7k views
ASP.NET MVC: url routing vs querystring
I have a page routed like /Comments/Search/3 where i search and display all the comments of the thread "3".
I'm adding a sort function (by date, author etc). What is the best way to handle it? ...
13
votes
5answers
1k views
Best Practices for Passing Data Between Pages
The Problem
In the stack that we re-use between projects, we are putting a little bit too much data in the session for passing data between pages. This was good in theory because it prevents ...
13
votes
2answers
7k views
Optional query string parameters in URITemplate in WCF?
I'm developing some RESTful services in WCF 4.0. I've got a method as below:
[OperationContract]
[WebGet(UriTemplate = "Test?format=XML&records={records}", ...
13
votes
2answers
9k views
Passing param values to redirect_to as querystring in rails
This should be simple, but I can't seem to find an easy answer.
How can I pass param values from the current request into a redirect_to call? I have some form values I'd like to pass into the query ...
11
votes
1answer
4k views
Serialize JSON to query string in JavaScript/jQuery
I'm trying to find information on how to serialize a JSON object to query string format, but all my searches are drowning in results on how to go the other way (string/form/whatever to JSON).
I have
...
11
votes
1answer
560 views
What characters must be escaped in an HTTP query string?
This question concerns the characters in the query string portion of the URL, which appear after the ? mark character.
Per Wikipedia, certain characters are left as is and others are encoded (usually ...
11
votes
5answers
3k views
Regular expression to remove one parameter from query string
I'm looking for a regular expression to remove a single parameter from a query string, and I want to do it in a single regular expression if possible.
Say I want to remove the foo parameter. Right ...
11
votes
10answers
5k views
How secure is sending sensitive data over https?
I would like to ask you about your opinion guys.
Is SSL secure enough for using sensitive data (like password) in query string?
Is there any extra options to implement?
thanks for any word.X.
10
votes
3answers
3k views
What's the difference between Request.Url.Query and Request.QueryString?
I have been tracking down a bug on a Url Rewriting application. The bug showed up as an encoding problem on some diacritic characters in the querystring.
Basically, the problem was that a request ...
9
votes
5answers
352 views
Toggle query string variables
I've been banging my head over this.
Using jquery or javascript, how can I toggle variables & values and then rebuild the query string? For example, my starting URL is:
...
9
votes
4answers
4k views
querystring encoding of a javascript object
Do you know a fast and simple way to encode a javascript object into a string that I can pass via GET?
No jQuery, no other frameworks, just plain Javascript :)
9
votes
3answers
5k views
How to remove x and y on submit in HTML form with Image type button?
I have created a form in my application as follows:
<form action="/search/" method="get">
<input id="search-box" name="search" type="text" size=30 title="Search" value="" />
...
9
votes
4answers
14k views
Fastest way to implode an associative array with keys
I'm looking for a fast way to turn an associative array in to a string. Typical structure would be like a URL query string but with customizable separators so I can use '&' for xhtml links or ...
9
votes
6answers
15k views
What is the easiest way to read/manipulate query string params using javascript?
The examples I've seen online seem much more complex than I expected (manually parsing &/?/= into pairs, using regular expressions, etc). We're using asp.net ajax (don't see anything in their ...
8
votes
7answers
6k views
Attack on ASP site that uses a SQL server database
We have a survey site that was apparently attacked. The symptoms are identical to what was described on the following page on this site:
...
8
votes
9answers
26k views
How can i remove item from querystring in asp.net using c#?
I want remove "Language" querystring from my url. How can i do this ? (using Asp.net 3.5 , c#)
Default.aspx?Agent=10&Language=2
I want to remove "Language=2", but language would be the ...
7
votes
2answers
1k views
Objective-C: How to add query parameter to NSURL?
Let's say I have an NSURL? Whether or not it already has an empty query string, how do I add one or more parameters to the query of the NSURL? I.e., does anyone know of an implementation of this ...
7
votes
4answers
460 views
How to get the query string by javascript?
How to extract the query string from the URL in javascript?
Thank you!
7
votes
5answers
12k views
How can I delete a query string parameter in JavaScript?
Is there better way to delete a parameter from a query string in a URL string in standard JavaScript other than by using a regular expression?
Here's what I've come up with so far which seems to ...
7
votes
5answers
9k views
URL Querystring - Find, replace, add, update values?
We inherited some C# code as part of a project from another company which does URL redirects that modifies the existing query string, changing values of items, adding new params, etc as needed. The ...
7
votes
3answers
2k views
How do you persist querystring values in asp.net mvc?
What is a good way to persist querystring values in asp.net mvc?
If I have a url:
/questions?page=2&sort=newest&items=50&showcomments=1&search=abcd
On paging links I want to keep ...
7
votes
7answers
5k views
Versioning CSS files with a query string like Stackoverflow does?
If you look at Stackoverflow.com's source you'll see the reference to their css file is:
<link href="/Content/all.min.css?v=2383" rel="stylesheet" type="text/css" />
How is this done so they ...
7
votes
6answers
10k views
ASP.NET MVC - Mapping more than one query string parameter to a pretty url
I am a bit stuck on the design of my seo friendly urls for mvc....Take for example the following url:
http://myapp/venues/resturants.aspx?location=central&orderBy=top-rated
With my mvc app i have ...
7
votes
6answers
8k views
Asp.net - Empty QueryString Parameter
The Problem
What is the proper way to check for the foo parameter in the following url's querystring using asp.net? Is this even possible?
http://example.com?bar=3&foo
I have tried checking ...
7
votes
6answers
7k views
Outputing a manipulated QueryString in c#
Using the following code I get a nice formatted string:
Request.QueryString.ToString
Gives me something like: &hello=worldµsoft=sucks
But when I use this code to clone the collection ...
7
votes
2answers
376 views
RESTifying URLs
At work here, we have a box serving XML feeds to business partners. Requests for our feeds are customized by specifying query string parameters and values. Some of these parameters are required, but ...
6
votes
4answers
2k views
how to get GET (query string) variables in node.js?
Can we get the variables in query string in node.js just like we get in $_GET in PHP?
I know that in node.js we can get the url in request. Is there any method to get query string parameters?
6
votes
3answers
337 views
What is the correct encoding for querystrings?
I am trying to send a request to an url like this "http://mysite.dk/tværs?test=æ" from an asp.net application, and I am having trouble getting the querystring to encode correctly. Or maybe the ...
6
votes
4answers
551 views
How to convert a string into a map in javascript?
Say, we have a query string that looks like this:
"param1:'test1' && param2:'test2'"
I would like to turn it into an object map, like this:
{param:test1, param2:test2}
How could that be ...
6
votes
6answers
580 views
Difference between Request.QueryString[“id”] and Request[“id”]
Can any one tell me is there any difference between:
Request.QueryString["id"] and Request["id"]
If yes which is better to use?
6
votes
7answers
334 views
Query String Parameters make my app at risk?
I'm writing an Asp.Net WebForms app where I am calling an edit page an passing in the data about the record to be edited using query string parameters in the URL.
Like:
...
6
votes
6answers
279 views
Is it old-fashioned use query string for id?
I am curious if is out-of-date to use query string for id. We have webapp running on Net 2.0. When we display detail of something (can be product) we use query string like this : ...
6
votes
5answers
8k views
How to use jquery to manipulate the querystring
I have a select dropdown with id's mapped to values.
On the onChange event I want to redirect to the same url but with 'id=value' appended to the querystring.
How do I check that this 'id' option ...
6
votes
4answers
362 views
What happens if the action field in a <form> has parameters?
Is there a well-supported, common behavior that I can expect if I do something like this in HTML:
<form method="get" action="/somePage.html?param1=foo¶m2=foo">
<input ...
6
votes
6answers
582 views
In MVC, should pagination info go in the path or querystring?
In the path:
Format: http://mydomain.com/{category}/{subcategory}/{pageNumber}/{pageSize}
Example: http://mydomain.com/books/thriller/3/25
In the querystring:
Format: ...
5
votes
7answers
203 views
what is the best way to store a user filtered query params in a database table?
I have an ASP.NET MVC website. In my backend I have a table called People with the following columns:
ID
Name
Age
Location
... (a number of other cols)
I have a generic web page that uses model ...
5
votes
5answers
74 views
What purpose is of “&rnd=” parameter in http requests?
all!
Why some web-applications use http-get parameter "&rnd=" ? What purpose is of it?
What problems are solved by this tag?
5
votes
3answers
225 views
How would you pass through “>=” in the querystring?
I would like to pass some operators through as querystring parameters so that I can convert them, along with a value into an SQL query. The idea would be to let the querystring parameters dictate ...
5
votes
6answers
237 views
extract query string from a URL string
I am reading from history, and I want that when i come across a google query, I can extract the query string. I am not using request or httputility since i am simply parsing a string. however, when i ...
5
votes
4answers
2k views
How can i encrypt query string parameters in ASP.NET website?
In one of my ASP.Net websites, I have to provide a link to the user in which all query string parameters should be encrypted.
What I am thinking is to use the command "aspnet_regiis" (as used to ...