> I have a URL and am using an HttpWebRequest to connect to the web and
> download the page. When I have the page contents I use RegEx and search the
[quoted text clipped - 6 lines]
>
> Is there a class that can do this?
The Uri class can do this:
Uri baseUri = new Uri("http://www.mysite.com?var=something&blah=2");
string page = "./blah/mypage.html";
Uri finalUri = new Uri(baseUri, page);

Signature
Patrick Steele (patrick@mvps.org)
http://weblogs.asp.net/psteele