在ASP.NET C#中显示成功消息框

时间:2016-06-02 08:18:30

标签: asp.net

如何在ASP.net中显示带有成功标识的消息框,我只能使用这些代码显示警告消息框。

ClientScript.RegisterStartupScript(this.GetType(), "myalert", "alert('Please dont leave text boxes blank');",true); 

非常感谢。

2 个答案:

答案 0 :(得分:0)

MessageBox.Show("Successfully saved", " Student Record", MessageBoxButtons.OK, MessageBoxIcon.Information);

答案 1 :(得分:0)

我觉得这可能是它的工作原理...

ClientScript.RegisterStartupScript(this.GetType(), "Message Title", "Your Message", true);