Click here to Skip to main content
5,785,816 members and growing! (18,934 online)
Email Password   helpLost your password?
Web Development » ASP.NET » Samples     Intermediate

A useful UrlBuilder class

By lotuspro

A simple way to generate and manipulate URLs.
C#, VB, Windows, .NET 1.0, .NET 1.1, .NET 2.0, .NET, WebForms, ASP.NET, Visual Studio, VS.NET2002, VS.NET2003, VS2005, Dev

Posted: 20 Jul 2005
Updated: 19 Aug 2005
Views: 59,724
Bookmarked: 77 times
Announcements
Loading...



Search    
Advanced Search
Sitemap
30 votes for this Article.
Popularity: 6.77 Rating: 4.58 out of 5
1 vote, 3.3%
1
0 votes, 0.0%
2
0 votes, 0.0%
3
9 votes, 30.0%
4
20 votes, 66.7%
5

Introduction

Building URLs is something one does all the time as an ASP.NET developer. The .NET Framework has generously provided many classes to help us simplify the problem, but after all my searching, the one thing I found missing from the framework was a way to easily work with QueryString parameters. I did a little looking around and found a few solutions to the problem written by various people but none of them built on anything already in the framework. The framework provides the very useful System.UriBuilder class but it has no in-built way to deal with QueryString parameters apart from being able to get back a string containing the Query portion of the URI. While this is not all that useful in itself, it does help us create a derived class which extends the functionality in UriBuilder. Enter UrlBuilder. While UriBuilder is a more accurate name given modern naming conventions, UrlBuilder is semantically equivalent and more importantly, not a duplicate name of anything already in the framework.

If the reader wishes to get elbow deep in the code to discover its inner workings, it is provided in the download for your perusal and should be immediately obvious how it all hangs together. All I shall attempt to do here is give a brief explanation of how to use the UrlBuilder class by means of some sample code which will hopefully outline and highlight the salient features of this class. So then, without further delay, let's delve in.

The UrlBuilder class can be instantiated in several ways, but for simplicity, let's assume the user wishes to use a string as the initialiser of this UrlBuilder instance.

UrlBuilder builder = new 
    UrlBuilder(“http://www.codeproject.com/index.asp?cat=4”);

The rest of the constructor overloads provided in the class are exactly the same as those of the base UriBuilder class with the exception of one additional which takes a System.Web.UI.Page object. This is useful when one wishes to merely redirect to the same page with different QueryString parameters. The object can also be initialised using a System.Uri object. Once instantiated, we can manipulate any part of the URI (see the System.Uri documentation).

builder.Host = “www.gibbons.co.za”;
builder.Path = “archive/2005”;

It is interesting to note that a forward slash “/” is optional at the start of the Path string. Either way, the UriBuilder class will return a correctly formed URI. The UriBuilder class provides no way to set only the page name portion of the URI, so I added a new property called PageName which allows you to set only the name of the required page.

builder.PageName = “06.aspx”;

So far, apart from the PageName property, this is nothing new; all this can already be done with the UriBuilder class. The real usefulness of the UrlBuilder class becomes apparent when we try to manipulate the QueryString parameters, as follows:

builder.QueryString[“cat”] = 12345;
builder.QueryString[“a”] = “A”;
builder.QueryString[“b”] = “B”; 

If the QueryString already contains a parameter contained in the URI passed to the constructor (in this case “cat”), the value of the parameter will be overwritten with the new value. If the parameter doesn’t already exist, it is appended to the QueryString generated. In addition, all the properties and methods of the internal StringDictionary object used to store the QueryString pairs are made available to the user. You could, for example, remove one of the parameters:

builder.QueryString.Remove(“cat”); 

Or check if the collection contains a given key or value:

builder.QueryString.ContainsKey(“cat”);
builder.QueryString.ContainsValue(“12345”);

Lastly, there are two ways in which the URI may be consumed. Firstly, by calling:

string uri = builder.ToString(); 

Or simply by calling:

builder.Navigate(); 

which will perform a redirect to the URI currently contained in the object.

Happy coding.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

lotuspro



Occupation: Web Developer
Location: Canada Canada

Other popular ASP.NET articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 25 of 29 (Total in Forum: 29) (Refresh)FirstPrevNext
GeneralNull Exception Issuememberj105 Rob13:49 19 Dec '06  
GeneralYou're great! Thanks for your sharing!memberzhang.hong21:47 8 Dec '06  
GeneralAmazing helper!memberRaven#37712:40 10 Aug '06  
AnswerRe: Amazing helper!memberlotuspro1:32 11 Aug '06  
GeneralMinor problemmemberOskar Austegard9:13 18 Aug '05  
GeneralRe: Minor problemmemberlotuspro10:49 18 Aug '05  
GeneralSimilar to my article :-)sitebuilderUwe Keim11:24 20 Jul '05  
GeneralRe: Similar to my article :-)memberOskar Austegard8:34 18 Aug '05  
GeneralRe: Similar to my article :-)sitebuilderUwe Keim8:57 18 Aug '05  
GeneralRe: Similar to my article :-)memberOskar Austegard9:23 18 Aug '05  
GeneralRe: Similar to my article :-)memberlotuspro10:57 18 Aug '05  
GeneralRe: Similar to my article :-)memberOskar Austegard11:14 18 Aug '05  
GeneralRe: Similar to my article :-)memberlotuspro12:10 18 Aug '05  
GeneralNice KISS job... one minor change.memberMarc Brooks9:34 20 Jul '05  
GeneralRe: Nice KISS job... one minor change.memberlotuspro10:02 20 Jul '05  
GeneralRe: Nice KISS job... one minor change.memberThomas Freudenberg22:08 25 Jul '05  
GeneralRe: Nice KISS job... one minor change.memberlotuspro23:44 25 Jul '05  
GeneralNice and cleanmemberAshaman8:22 20 Jul '05  
GeneralNOTE From Author - Broken download linkmemberlotuspro5:46 20 Jul '05  
GeneralUrlBuilder_src.zip doesn't existmemberDeKale4:49 20 Jul '05  
GeneralRe: UrlBuilder_src.zip doesn't existmemberlotuspro5:01 20 Jul '05  
GeneralRe: UrlBuilder_src.zip doesn't existmembermatthewtamm5:16 20 Jul '05  
GeneralRe: UrlBuilder_src.zip doesn't existmemberlotuspro5:22 20 Jul '05  
GeneralRe: UrlBuilder_src.zip doesn't existmembermatthewtamm5:41 20 Jul '05  
GeneralRe: UrlBuilder_src.zip doesn't existmemberlayabout_si5:43 20 Jul '05  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 19 Aug 2005
Editor: Smitha Vijayan
Copyright 2005 by lotuspro
Everything else Copyright © CodeProject, 1999-2009
Web12 | Advertise on the Code Project