例子:是因为信息里面有特殊符号,替换掉就可以弹出来了。
catch (Exception ex)
{
string message = ex.Message;
string temp=message.Replace("\r\n","");
//MessageBox.Show("错误信息:" + ex.Message);
//Page.RegisterStartupScript("", "
ScriptManager.RegisterStartupScript(this, this.GetType(), "", "alert('" + temp + "!');", true);
return;
}