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

本文关键字:消息 第一页 文本 错误 异常 | 更新日期: 2023-09-27 18:12:54

通常当我得到一些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;
}