Simple ASP.Net MessageBox?

前端 未结 3 1512
独厮守ぢ
独厮守ぢ 2021-01-16 11:42

I want a simple MessageBox for ASP.Net, but everything I tried didn\'t work and I don\'t know why. The last thing I tried was this but it didn\'t work either.

Any id

3条回答
  •  [愿得一人]
    2021-01-16 12:37

    Here is your answer.

    http://www.beansoftware.com/ASP.NET-Tutorials/Message-Box.aspx

    protected void Page_Load(object sender, EventArgs e)
            {
    
            }
    
            protected void Button1_Click(object sender, EventArgs e)
            {
    string s = "here in button event";
                string script = "";
                if (!Page.ClientScript.IsStartupScriptRegistered("clientScript"))
                {
                    Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "clientScript", script);
            }
    
            }
    
    
            }
    

提交回复
热议问题