Request.RawUrl 属性的应用收
时间:2021-12-29 10:21:09|栏目:.NET代码|点击: 次
原始 URL 定义为 URL 中域信息之后的部分。在 URL 字符串 http://www.contoso.com/articles/recent.aspx 中,原始 URL 为 /articles/recent.aspx。原始 URL 包括查询字符串(如果存在)。
if (Request.RawUrl.ToLowerInvariant().Contains("/category/"))
{
DisplayCategories();
}
用来对字符串分析,有选择的导向。
复制代码 代码如下:
if (Request.RawUrl.ToLowerInvariant().Contains("/category/"))
{
DisplayCategories();
}
用来对字符串分析,有选择的导向。
栏 目:.NET代码
本文地址:http://www.codeinn.net/misctech/188437.html