try-finally 中的 Response.Redirect()
可能的重复:
重定向后finally中的代码会运行吗?
你好,
什么当我在 try/finally 块中调用 Response.Redirect() 并将 EndResponse 设置为 true/false 时会发生这种情况吗?最后会被调用吗?
Possible Duplicate:
Will code in finally run after a redirect?
Hello,
What happens when I call a Response.Redirect() with EndResponse set to true/false inisde a try/finally block? Will the finally be called?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
try/finally 中的
finally
块将总是被调用 - 这就是finally
的要点。此处描述了异常(次要): 当finally不在.net try..finally块中执行时的条件
The
finally
block in a try/finally will always be called - that's the point offinally
.Exceptions (minor) are described here: Conditions when finally does not execute in a .net try..finally block