Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / .NET Framework / New Users / September 2007

Tip: Looking for answers? Try searching our database.

Uri Class?

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Brian - 04 Sep 2007 19:33 GMT
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
page for any <a href=> links.  The links usually contain something like
"./blah/mypage.html".  What I need to do is take the original URL and
combine it with what I found in the href.  So if my original URL is
http://www.mysite.com?var=something&blah=2 and then I combine it with what
is shown above - the result I want to see is
http://www.mysite.com/blah/mypage.html

Is there a class that can do this?

TIA!
Brian
Patrick Steele - 05 Sep 2007 01:52 GMT
> 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


Rate this thread:







Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.