我在页面的代码隐藏中有以下内容:
HttpContext.Current.Response.Clear();
HttpContext.Current.Response.StatusCode = 404;
HttpContext.Current.Response.End();
但我得到(在浏览器中。Visual Web Developer 不会抛出任何异常):
XML Parsing Error: no element found
Location: http://localhost:...
Line Number 1, Column 1:
我尝试将这些行放入其中,MasterPage
但没有任何区别。我什至尝试将它们放入PreRenderComplete
事件处理程序中。
那么为什么会显示这个错误呢?