Answers for "c# url"

4

c# get url html

using System.Net;

using (WebClient web1 = new WebClient())
	string data = web1.DownloadString("URL");
	Console.WriteLine(data);
}
Posted by: Guest on March-02-2020
2

c# Request.Url

string url = HttpContext.Current.Request.Url.AbsoluteUri;
// http://localhost:1302/TESTERS/Default6.aspx

string path = HttpContext.Current.Request.Url.AbsolutePath;
// /TESTERS/Default6.aspx

string host = HttpContext.Current.Request.Url.Host;
// localhost
Posted by: Guest on September-24-2020

Browse Popular Code Answers by Language