asp.net获取当前页面名称

作者: unvs 分类: ASP.NET 发布时间: 2011-04-30 16:31 ė15,033 views 6没有评论

当你想获得当前页面名称时,你用的是什么方法呢? 比如: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获取当前页面名称

发表评论

电子邮件地址不会被公开。 必填项已用 * 标注

您可以使用这些 HTML 标签和属性: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Ɣ回顶部