一个ASP.NET中使用的MessageBox类

 ///
 /// 自定义信息对话框
 ///

 public class MessageBox
 {
  ///
  /// 定义一个web页面,用来显示用户自定错误提示信息
  ///

  System.Web.UI.Page p;
  ///
  /// 实例时,参数为:this 如:MessageBox MB=new MessageBox(this);
  ///

  /// 此参数为:this
  public  MessageBox(System.Web.UI.Page Page)
  {
   p=Page; //创建页面
  }
  ///
  /// 显示对话框
  ///

  /// 提示信息
  public void Show(string message)
  {
   string  script="";
   p.Response.Write(script);
  }
 }

你可能感兴趣的:(一个ASP.NET中使用的MessageBox类)