我想知道如果可能的话,如何在模态弹出窗口上显示警告框。我正在使用模态弹出扩展器来显示用户填写的表单。在表单上有用户必须填写的字段,如果他们没有填写字段并单击提交,那么我想显示一个警告框。就像现在一样,当modalpopup仍处于活动状态时,我无法显示警报框。以下是我正在尝试使用的警报框的代码:
Page.ClientScript.RegisterStartupScript(this.GetType(), "error", "alert('Please coomplete all of the required fields');", true);
答案 0 :(得分:0)
string Msg = "Your Message";
Response.Write(@"<script language='javascript'>alert('" + Msg + " .');</script>");
它适用于我