Click here to Skip to main content
15,888,351 members
Articles / Programming Languages / C#
Tip/Trick

Turning local paths from an HTML code in external accessible paths

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
20 Feb 2011CPOL 8.1K   2   1
Turning local paths from an HTML code in external accessible paths
Let's say you have a project where you coded some stuff to get all links (href) from a webpage (html) but the links are all local paths like /pages/download.php

The code provided below is an simple example on how to turn these into a full path with only needing 3 lines of code and a url.

The code below is pretty easy and short but works great.
C#
var Url = new Uri("http://website.com/");
var newurl = new Uri(Url, "/path/download.php");
string path = newurl.ToString();


Edit
Another solution to this problem submitted by: DaveAuld
Thank you :)
String fullurl = new Uri(new Uri("http://website.com"), "/path/download.php").ToString();

License

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


Written By
Netherlands Netherlands
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralEdit: fixed spelling..... Pin
DaveAuld20-Feb-11 2:35
professionalDaveAuld20-Feb-11 2:35 

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.