可以在第一页上将异常尝试/捕获错误消息放到文本框中吗?

时间:2013-05-08 12:38:41

标签: c# asp.net

当我得到某种SocketExceptionWebException等时,通常会将错误消息引发到新网页。

是否可以将错误显示在第一页的文本框中,而不是重定向到包含错误消息的新页面?

1 个答案:

答案 0 :(得分:1)

您的问题含糊不清,但通常在您想要处理异常时,可以使用try catch语句添加代码。

例如;

try
{
    throw new Exception("This is a dirty exception");
}
catch (Exception ex)
{
    // do something with the exception thrown
    // read the exception message: ex.Message
    // read the exception innerException: ex.InnerException
    // in your case, you can assign the message to a textbox
    this.TextBox1.Text = ex.Message;
}