时间:2021-05-28
利用Global.asax的Application_BeginRequest 实现url 重写 无后缀
复制代码 代码如下:
<%@ Application Language="C#" %>
<script RunAt="server">
void Application_BeginRequest(object sender, EventArgs e)
{
string oldUrl = System.Web.HttpContext.Current.Request.RawUrl; //获取初始url
//~/123.aspx → ~/Index.aspx?id=123
Regex reg = new Regex(@"^\/\d+\.html");
if (reg.IsMatch(oldUrl))
{
string id = reg.Match(oldUrl).ToString().Substring(1, reg.Match(oldUrl).ToString().LastIndexOf(".") - 1);
Context.RewritePath("~/Index.aspx?id=" + id);
}
//~/123 → ~/Index.aspx?id=123
Regex reg1 = new Regex(@"^\/\d+$");
if (reg1.IsMatch(oldUrl))
{
string id = reg1.Match(oldUrl).ToString().Substring(1);
Context.RewritePath("~/Index.aspx?id=" + id);
}
//~/index/123 → ~/Index.aspx?id=123
Regex reg3 = new Regex(@"^\/index\/\d+$");
if (reg3.IsMatch(oldUrl))
{
string id = reg3.Match(oldUrl).ToString().Substring(7);
Context.RewritePath("~/Index.aspx?id=" + id);
}
}
</script>
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
在Global.asax中添加Application_BeginRequest事件:复制代码代码如下:protectedvoidApplication_Begi
利用Global.asax的Application_Error实现错误记录错误日志复制代码代码如下:voidApplication_Error(objectse
第一种是在页面global.asax中,相关代码如下:复制代码代码如下:voidApplication_BeginRequest(objectsender,Ev
1、Global.asax文件:复制代码代码如下:voidApplication_Start(objectsender,EventArgse){//在应用程序启
比如每天凌晨七点的时候email发送一次报表。这里首先想到的就是利用Global.asax文件来实现,以下Global文件的内容。复制代码代码如下://这里使用