我有一个应用程序,您需要在数据库中注册才能连接到它,但如果没有,则会出现错误屏幕,但它看起来真的很难看,如您所见
我试图检查保存用户 ID 的会话是否 == null 而不是清除内容,这是在每个用户首先连接的起始页面上
if (this.Session["SessionId"] ==null)
{
Response.ClearContent();
Response.Write("ERROR");
Response.End();
}
为什么我会在这里出现错误
<system.web>
<customErrors defaultRedirect="~/Error/Error.aspx" mode="Off"/>
</system.web>
感谢您的帮助和快速答复