aspx页面伪装成静态html 把aspx页面伪装成静态html格式的实现代码
人气:0想了解把aspx页面伪装成静态html格式的实现代码的相关内容吗,在本文为您仔细讲解aspx页面伪装成静态html的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:aspx,伪装,静态html,下面大家一起来学习吧。
在 Global.asax 中添加 Application_BeginRequest 事件: 复制代码 代码如下:
protected void Application_BeginRequest(object sender, EventArgs e)
{
string pathAndQuery = Request.Url.PathAndQuery.ToLower();
if (pathAndQuery.IndexOf(".html") > -1)
{
pathAndQuery = "~/" + pathAndQuery.Replace(".html", ".aspx");
HttpContext.Current.RewritePath(pathAndQuery);
}
}
这样就可以用xxx.html 来访问你的 xxx.aspx页面了,浏览器地址栏显示的是xxx.html(页面带参数也是可以的)。
加载全部内容