HY!我正在asp.net上完成我的最后一年项目。但陷入了困境。对于任何类型的异常,我在 Global.asax.cs 中都有 Application_Error 方法。
protected void Application_Error(object sender, EventArgs e)
{
Exception exception = Server.GetLastError();
Server.ClearError();
Response.Redirect("/Error/ErrorMessage");
}
此方法在await语句中呈现。
await service.StoreMessage(model);
我不知道兔子发生了什么......任何帮助都将受到赞赏。