HttpUtility.ParseQueryString Method (String, Encoding)
.NET Framework 3.0
Parses a query string into a NameValueCollection using the specified Encoding.
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public static NameValueCollection ParseQueryString ( String query, Encoding encoding )
public static function ParseQueryString ( query : String, encoding : Encoding ) : NameValueCollection
Not applicable.
Parameters
- query
The query string to parse.
- encoding
The Encoding to use.
Return Value
A NameValueCollection of query parameters and values.In the returned NameValueCollection, URL-encoded characters are decoded and multiple occurrences of the same query string parameter are listed as a single entry with a comma separating each value.
Security Note: |
|---|
| The ParseQueryString method uses query strings that might contain user input, which is a potential security threat. By default, ASP.NET Web pages validate that user input does not include script or HTML elements. For more information, see Script Exploits Overview (Visual Studio). |
Community Additions
ADD
Show:
Security Note: