当我得到某种SocketException
,WebException
等时,通常会将错误消息引发到新网页。
是否可以将错误显示在第一页的文本框中,而不是重定向到包含错误消息的新页面?
答案 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;
}