Click here to Skip to main content
15,880,503 members
Articles / Web Development / ASP.NET

A Small Class for Simplifying the Work with URL Parameters

Rate me:
Please Sign up or sign in to vote.
4.77/5 (42 votes)
4 Apr 2010CPOL3 min read 166.9K   873   105   43
An article describing a simple class that makes working with URL parameters a little bit easier
An URL inside the Microsoft Internet Explorer Address bar

Introduction

(For the latest changes, please see the History section below.)

If you are working with URLs from within ASP.NET, you probably often need to read different URL parameters. E.g., you could read the value of the "name1" parameter out of the QueryString collection of your Page class (or, to be more precise, from the Request property of your Page class):

C#
private void Page_Load(
    object sender, 
    System.EventArgs e )
{
    string value1 = Request.QueryString["name1"];
 
    // ... Further processing of the value1 variable ... 
}

In my projects, I often need the ability to write URL parameters, e.g., for outputting a URL on a page or for redirecting to another page with the appropriate parameters. This article introduces a class QueryString which I wrote in order to simplify my life a little bit.

Some Examples

Before examining the QueryString class in more detail, first some examples of how to use it are shown.

Example 1 - Manipulate an attribute value

Create a QueryString and simply let itself fill with the parameters of the current page:

C#
private void Page_Load(
    object sender, 
    System.EventArgs e )
{
    // Let the object fill itself 
    // with the parameters of the current page.
    QueryString qs = new QueryString();
 
    // Read a parameter from the QueryString object.
    string value1 = qs["name1"];
  
    // Write a value into the QueryString object.
    qs["name1"] = "This is a value";
  
    // Redirect with the current content of the QueryString object.
    // In this example, since the BeforeUrl property is not modified,
    // it will redirect to the current page itself, but with the
    // "name1" parameter set to the new value.
    Response.Redirect( qs.All, true );
}

As you can see, you can simply modify a parameter's value by assigning it to the appropriate parameter name by using the [] operator. The All property returns the complete URL that is stored inside the QueryString object including the latest (possibly modified) parameters.

Example 2 - Removing parameters

To remove a certain parameter from the QueryString object, call the RemoveParameter method, specifying the name of the parameter to remove:

C#
private void Page_Load(
    object sender, 
    System.EventArgs e )
{
    // Let the object fill itself 
    // with the parameters of the current page.
    QueryString qs = new QueryString();
 
    // Read a parameter from the QueryString object.
    string value1 = qs["name1"];
  
    // Now remove the parameter.
    qs.RemoveParameter( "name1" );
   
    // This has the same effect as RemoveParameter() method:
    qs["name1"] = null;
  
    // ... Further processing of the value1 variable ... 
}

The Class in Brief

The most common use of the class was already described in the previous section. It should be simple to use, n'est pas? Nevertheless, here is an (incomplete) overview of the most usable members:

Constructors

The following constructors exists.

  • public QueryString() - Empty constructor, fills itself with the parameters of the current page (if any)
  • public QueryString( System.Web.UI.Page currentPage ) - Constructs with the parameters of the given page
  • public QueryString( string url ) - Constructs with the parameters from the given URL
  • public QueryString( Uri uri ) - Constructs with the parameters from the given URI

Methods for reading from a given URL

By using the following methods, you can achieve similar results as with the constructors, but after the object is already constructed.

  • public void FromUrl( System.Web.UI.Page currentPage ) - Fills with the parameters of the given page
  • public void FromUrl( string url ) - Fills with the parameters from the given URL
  • public void FromUrl( Uri uri ) - Fills with the parameters from the given URI

Miscellaneous operations

Use the following methods for further operations.

  • public bool HasParameter( string parameterName ) - Check whether a given parameter is present (i.e. is non-null and non-empty-string)
  • public void RemoveParameter( string name ) - Removes a parameter from the current parameter collection. Does nothing if the parameter is not present
  • public void RemoveAllParameters() - Removes all parameters from the current parameter collection

Miscellaneous properties

Use the following properties for accessing various values.

  • public string this [string index] - Gets or sets a parameter value by the given parameter name. If the parameter does not exists, get returns string.Empty (i.e. not null).
  • public string BeforeUrl - Gets or sets the the "base" part of the URL returned by the All property. E.g. set this to "http://www.myserver.com/mypage.aspx"
  • public string All - Gets the complete URL that is currently stored inside the object. This is the value of the All property plus the current parameters. E.g. returns "http://www.myserver.com/mypage.aspx?name1=value1&name2=someOtherValue".

Conclusion

In this small article, I've shown you a class that simplifies the reading and writing of URL parameter values. For me, this class is around about approximately two years and helped me save a lot of coding time (well, at least a bit...). Hopefully it is useful for you, too.

For questions, comments and remarks, please use the commenting section at the bottom of this article.

History

  • 2010-04-05: Added new version that adds several new methods (like a HTTP 301 redirect, which is good for SEO) and makes use of the concept of a Fluent interface
  • 2005-01-06: Corrected some very small spelling errors
  • 2004-12-30: Added fix and suggestion from Chris Maunder
  • 2004-12-14: Created first version of article

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Chief Technology Officer Zeta Software GmbH
Germany Germany
Uwe does programming since 1989 with experiences in Assembler, C++, MFC and lots of web- and database stuff and now uses ASP.NET and C# extensively, too. He has also teached programming to students at the local university.

➡️ Give me a tip 🙂

In his free time, he does climbing, running and mountain biking. In 2012 he became a father of a cute boy and in 2014 of an awesome girl.

Some cool, free software from us:

Windows 10 Ereignisanzeige  
German Developer Community  
Free Test Management Software - Intuitive, competitive, Test Plans.  
Homepage erstellen - Intuitive, very easy to use.  
Offline-Homepage-Baukasten

Comments and Discussions

 
QuestionURL REDIRECTION Pin
Member 917112831-Jul-12 19:58
Member 917112831-Jul-12 19:58 
GeneralMy vote of 5 Pin
Sunasara Imdadhusen4-Jan-11 22:13
professionalSunasara Imdadhusen4-Jan-11 22:13 
GeneralParameters Encode / Decode Pin
Member 32658741-Sep-10 23:50
Member 32658741-Sep-10 23:50 
GeneralRe: Parameters Encode / Decode Pin
Uwe Keim2-Sep-10 0:31
sitebuilderUwe Keim2-Sep-10 0:31 
GeneralRe: Parameters Encode / Decode Pin
Member 32658742-Sep-10 4:51
Member 32658742-Sep-10 4:51 
GeneralRe: Parameters Encode / Decode Pin
Member 32658742-Sep-10 4:55
Member 32658742-Sep-10 4:55 
AnswerA way to remove parameter-name hardcode. Pin
valera.kolupaev10-Dec-09 0:54
valera.kolupaev10-Dec-09 0:54 
GeneralThanks Pin
ColinBashBash26-May-09 11:02
ColinBashBash26-May-09 11:02 
GeneralRe: Thanks Pin
Uwe Keim26-May-09 11:04
sitebuilderUwe Keim26-May-09 11:04 
GeneralRe: Thanks Pin
Uwe Keim4-Apr-10 21:54
sitebuilderUwe Keim4-Apr-10 21:54 
QuestionCompatibility and optimizations Pin
PeterB7225-May-09 2:52
PeterB7225-May-09 2:52 
GeneralGreat work Pin
Shahedul Huq Khandkar24-Jul-06 21:39
Shahedul Huq Khandkar24-Jul-06 21:39 
GeneralRe: Great work Pin
Uwe Keim24-Jul-06 21:44
sitebuilderUwe Keim24-Jul-06 21:44 
QuestionDo you have it in vb.net? Pin
HamidTheProgrammer20-Sep-05 6:55
HamidTheProgrammer20-Sep-05 6:55 
AnswerRe: Do you have it in vb.net? Pin
Uwe Keim20-Sep-05 8:18
sitebuilderUwe Keim20-Sep-05 8:18 
AnswerRe: Do you have it in vb.net? Pin
Gavin Harriss19-Feb-07 15:35
Gavin Harriss19-Feb-07 15:35 
GeneralA better C# to VB.NET converter Pin
Gavin Harriss19-Feb-07 15:54
Gavin Harriss19-Feb-07 15:54 
GeneralPageMethods helps with URLs Pin
Anonymous17-May-05 14:00
Anonymous17-May-05 14:00 
GeneralRe: PageMethods helps with URLs Pin
Uwe Keim17-May-05 18:30
sitebuilderUwe Keim17-May-05 18:30 
If you already do advertising, next time include the URL Wink | ;-)

http://metasapiens.com/PageMethods/ [^]

--
Affordable Windows-based CMS for only 99 €: try www.zeta-producer.com for free!


Generalquerystring and postback Pin
magister11-May-05 3:54
magister11-May-05 3:54 
GeneralRe: querystring and postback Pin
Uwe Keim11-May-05 18:25
sitebuilderUwe Keim11-May-05 18:25 
GeneralQuite a useful class, done something similar Pin
Sam Collett10-May-05 23:41
Sam Collett10-May-05 23:41 
GeneralRe: Quite a useful class, done something similar Pin
Uwe Keim10-May-05 23:58
sitebuilderUwe Keim10-May-05 23:58 
GeneralGreat work Pin
Noman Nadeem25-Apr-05 20:23
Noman Nadeem25-Apr-05 20:23 
GeneralRe: Great work Pin
Uwe Keim28-Apr-05 1:29
sitebuilderUwe Keim28-Apr-05 1:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.