通常,当我得到某种 , 等时,错误消息会被抛出到新SocketException
网页WebException
。
是否可以将错误显示在第一页的文本框中,而不是被重定向到带有错误消息的新页面?
您的问题含糊不清,但通常当您想要处理异常时,您可以将代码与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;
}