vote up 4 vote down star
3

I have a base URL :

http://my.server.com/folder/directory/sample

And a relative one :

../../other/path

How to get the absolute URL from this ? It's pretty straighforward using string manipulation, but I would like to do this in a secure way, using the Uri class or something similar.

It's for a standard a C# app, not an ASP.NET one.

flag

50% accept rate

1 Answer

vote up 14 vote down check
var baseUri = new Uri("http://my.server.com/folder/directory/sample");
var absoluteUri = new Uri(baseUri,"../../other/path");

OR

Uri uri;
if ( Uri.TryCreate("http://base/","../relative", out uri) ) doSomething(uri);
link|flag
May I ask, is there any JavaScript equivalent of the code above? – Nordin May 20 at 0:48
Ok, I found it, js-uri at code.google.com/p/js-uri Thanks. – Nordin May 20 at 3:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.