Path.Combine is handy, but is there a similar function in the .NET framework for URLs?
I\'m looking for syntax like this:
Url.Combine(\"http://MyUrl.
Why not just use the following.
System.IO.Path.Combine(rootUrl, subPath).Replace(@"\", "/")