如何在ASP.net中显示带有成功标识的消息框,我只能使用这些代码显示警告消息框。
ClientScript.RegisterStartupScript(this.GetType(), "myalert", "alert('Please dont leave text boxes blank');",true);
非常感谢。
答案 0 :(得分:0)
MessageBox.Show("Successfully saved", " Student Record", MessageBoxButtons.OK, MessageBoxIcon.Information);
答案 1 :(得分:0)
我觉得这可能是它的工作原理...
ClientScript.RegisterStartupScript(this.GetType(), "Message Title", "Your Message", true);