I want to extract the name of a particular directory of a URL and save it to a string from the server-side in ASP.NET C#.
For example, lets say I have a URL that looks like this:
http://localhost:1096/directory1/directory2/default.aspx
How would I get the value of directory1 from the URL and save it to a string variable?
Thanks in advance.
Sayed HassanPosted Sep 12, 2013, 7:54 AM
http://msdn.microsoft.com/en-us/library/system.uri.segments[^]
Sanjeeb LenkaPosted Sep 12, 2013, 7:21 AM
you can get current page url using below code.
string CurrentURL = System.Web.HttpContext.Current.Request.Url;
or refer to this link
http://forums.asp.net/t/1383898.aspx