0

我是ASP.NET/C#。在我将客户信息提交到数据库的其中一个页面中,我正在使用弹出窗口通知用户是否插入了数据,或者当表单未正确填写时,如果出现问题,我也试图显示弹出窗口尝试插入时出错。到目前为止,当数据成功插入以及验证失败时,弹出窗口显示正确。但如果提交时出现问题,弹出窗口不会显示。这是我的代码

catch (Exception ex)
            {
                ClientScript.RegisterStartupScript(GetType(), "UnexpectedError", "ShowSubmitPopUp('uerror')", true);
                NewCustomerStatusMsg.Style["display"] = "block";
                NewCustomerStatusMsg.Style["color"] = "Red";
                NewCustomerStatusMsg.Text = "There was some error while submitting your information.Please re-enter the values and try again.";
           }

任何人都可以帮我解决这个问题。这里缺少什么。

欢迎任何建议。

4

1 回答 1

1

ShowSubmitPopUp('uerror'); instead of ShowSubmitPopUp('uerror')。您忘记在末尾添加分号(;)。

于 2012-06-21T09:05:02.680 回答