ページのコードビハインドに次のものがあります。
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
それらをイベントハンドラーに入れてみました。
では、なぜそのエラーが表示されるのでしょうか。