'how to get URL path on local host and on server?
Plase guide me how to get URL path excluding page name on localhost and server.
for example for the page Active.aspx local path that I want to get is here in bold.
*http://localhost:1532/WebFolder/*Active.aspx
and on server I want to get this bold part
*http://domain.com/WebFolder/*Active.aspx
Similarly if page is in root it will return
*http://domain.com/Active.aspx or *http://localhost:1532/**Active.aspx
Solution 1:[1]
Request.ApplicationPath - Gets the ASP.NET application's virtual application root path on the server.
Request.Path - Gets the virtual path of the current request.
Edit
To get domain + current request + virtual path of the current application, try below:
Request.Url.GetLeftPart(UriPartial.Authority) + Request.ApplicationPath
Solution 2:[2]
Request.Url.AbsoluteUri is the way to go
Solution 3:[3]
You can use Request.servervariable["Remote_addr"] to get the ip address.But if you try on local host, it will returns default ip address of your machine. You can check this code from web server, can get ip address.
Solution 4:[4]
If you just want to get the local file path of a page, eg. "Active.aspx" Use
Request.AppRelativeCurrentExecutionFilePath
which ignores your localhost, local host file mapping, or virtual directory name and will return "~/Active.aspx" Other properties such as Request.Url.LocalPath won't help.
Solution 5:[5]
Use this. Its working
System.Web.HttpContext.Current.Request.Url.GetLeftPart(UriPartial.Authority) + "/" + System.Web.HttpContext.Current.Request.ApplicationPath + "/" + folderpath + filename;
Solution 6:[6]
try this:
Server.MapPath("~/");
or
Request.Url.Host
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | |
| Solution 2 | Bergkamp |
| Solution 3 | negaboys |
| Solution 4 | |
| Solution 5 | jayesh goswami |
| Solution 6 | Ovais Khatri |
