在DataManipulation类(DataManipulation.cs文件)中实现的删除方法,SqlException将在DB出现任何异常时捕获,并且我想为用户自定义异常错误消息然后我想传递/显示该错误从类文件到相应的.aspx页面的消息。
我可以使用scriptmanager.registerstartupscript做到这一点,但我相信它不是标准的,所以我想在用户控件中显示自定义错误消息。
请提供您的建议,谢谢
public class DataManipulation
{
public DataManipulation()
{ }
public void Delete(ClientInfo info)
{
try
{
......
}
catch (SqlException ex)
{
string msg = "Delete Error: ...................";
msg += ex.Message.Replace("\'", "").Replace("\"", "");
}
catch (Exception ex)
{
throw;
}
}
}