如何在Application_BeginRequest中捕获application / json和text / html请求

时间:2016-03-07 10:53:41

标签: asp.net global-asax

如何在application/json中捕获text/htmlApplication_BeginRequest个请求? 我试图迭代Request.AcceptTypes,但如果这是正确的方法,我并不是真的。

1 个答案:

答案 0 :(得分:0)

我认为this正是您所寻找的:

if (ConfigurationManager.AppSettings["Maintenance_Mode"] == "on")
{
    Context.RewritePath("Maintenance.aspx");
}