asp.net获取当前页面名称
当你想获得当前页面名称时,你用的是什么方法呢? 比如:http://blog.unvs.cn/archives/request-back-url.html 获取request-back-url.html,下面介绍一种net网站,获取页面名称的方法:
public static string CurrentPageName
{
get
{
string currentFilePath = HttpContext.Current.Request.FilePath;
return currentFilePath.Substring(currentFilePath.LastIndexOf("/") + 1); ;
}
}
string currentFilePath = HttpContext.Current.Request.FilePath;
string toppic = currentFilePath.Substring(currentFilePath.LastIndexOf("/") + 1);
更多获得当前URL地址问题:NET中关于返回当前地址的问题[地址获取]
本博文章基本上属于原创或收集整理,都是心血结晶。
欢迎转载分享,转载请注明出处,谢谢!
本文地址:asp.net获取当前页面名称