Answers for "c# Request.Url"

C#
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

C# Answers by Framework

Browse Popular Code Answers by Language