我想知道HttpResponse.Redirect Method (String, Boolean)
方法
答案 0 :(得分:5)
HttpResponse.Redirect的endResponse
参数的默认值为true
。
调用Redirect相当于调用Redirect,第二个参数设置为true。
重定向调用结束,在完成时抛出ThreadAbortException
异常。此异常对Web应用程序性能有不利影响。因此,建议您使用HttpResponse.Redirect(String, Boolean)
重载而不是此重载,并为false
参数传递endResponse
,然后调用CompleteRequest
方法。有关详细信息,请参阅End
方法。
请参阅此MSDN链接以供参考 - https://msdn.microsoft.com/en-us/library/t9dwyts4%28v=vs.110%29.aspx