当前位置: 代码迷 >> ASP.NET >> 怎么只对首页之外的页面设置过滤
  详细解决方案

怎么只对首页之外的页面设置过滤

热度:9511   发布时间:2013-02-25 00:00:00.0
如何只对首页之外的页面设置过滤
我想在HttpModule设置过滤器,只对首页之外的页面过滤,该怎么做?

------解决方案--------------------------------------------------------
string path = content.Request.Path.ToLower();

if (path.StartsWith("/index.aspx") == true)
{

}
------解决方案--------------------------------------------------------
引用楼主 gdmm919705 的帖子:
我想在HttpModule设置过滤器,只对首页之外的页面过滤,该怎么做?

------解决方案--------------------------------------------------------
探讨
string path = content.Request.Path.ToLower();

if (path.StartsWith("/index.aspx") == true)
{

}

------解决方案--------------------------------------------------------
探讨
string path = content.Request.Path.ToLower();

if (path.StartsWith("/index.aspx") == true)
{

}

------解决方案--------------------------------------------------------
第一次见 不错~
  相关解决方案