In web development using C#, getting the current page name
e.g --> home.aspx
is very easy...
Try this..
Using System.IO
String _pathName = Path.GetFileName(request.PhysicalPath);
Response.Write(_pathName);
Thursday, May 1, 2008
Subscribe to:
Comments (Atom)