B
Bill
Is there a combine method that works on URL's?
I basically want to do this:
Base = "http://localhost/test/"
File = "../myimage.gif"
string URL = (Object).Combine(Base,File);
//URL = "http://localhost/test/myimage.gif"
WebRequest objRequest = System.Net.HttpWebRequest.Create(URL);
Thanks for any help.
I basically want to do this:
Base = "http://localhost/test/"
File = "../myimage.gif"
string URL = (Object).Combine(Base,File);
//URL = "http://localhost/test/myimage.gif"
WebRequest objRequest = System.Net.HttpWebRequest.Create(URL);
Thanks for any help.