ASP.NET 自訂messagebox視窗
這是個簡單的小功能
就是寫一個自訂messagebox視窗
寫在後端中把訊息傳入
public void Messagebox(String ex, Page pg, Object obj)
{
string show = "<SCRIPT language='javascript'>alert('" + ex.Replace("\r\n", "\\n").Replace("'", "") + "'); </SCRIPT>";
Type cstype = obj.GetType();
ClientScriptManager cs = pg.ClientScript;
cs.RegisterClientScriptBlock(cstype, show , show.ToString());
}
呼叫
Messagebox("訊息", this.Page, this);
自我LV~