gpt4 book ai didi

c# - 如何使用弹出窗口在 ASP.NET 项目中显示错误消息?

转载 作者:太空宇宙 更新时间:2023-11-03 15:58:40 26 4
gpt4 key购买 nike

我正在使用这段代码,但发生了编译错误。它说 the name server does not exist in current context.如果我使用 Microsoft.SqlServer.Server然后.HtmlEncode does not exist in the context.

我怎样才能克服这个问题?

try { executing some code here which getting error 
}
catch (Exception ex)
{
HttpContext.Current.Response.Write("<script>alert('" +Server.HtmlEncode(ex.Message) + "')</script>");
}

最佳答案

我个人发现最好将错误简单地传递到 UI 级别并处理在 Ajax 调用错误语句中显示错误(假设这是一个您无法有条件地处理的异常)

我也不鼓励只是将错误的文本向上添加。有时这会比您希望人们知道的更多地揭示您应用程序的内部运作。

尝试使用 System.Web.HttpUtility.HtmlEncode(string) 而不是 Server.HtmlEncode

关于c# - 如何使用弹出窗口在 ASP.NET 项目中显示错误消息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22413024/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com