使用Javascript在模式内的标签上显示错误消息不起作用

时间:2016-03-29 18:53:04

标签: javascript c# asp.net label modalpopupextender

我正在开发一个应用程序,我只为他/她输入正确的密码时为用户提供更改基准年的选项,我是通过使用模态弹出扩展器来实现的:

如果密码匹配,则在文本框上将readonly设置为false,否则在面板中提供错误消息。

<asp:Panel ID="Panel1" runat="server" CssClass="modalPopup" Style="display: none" Width="233px" BackColor="White" >
        <p>Password</p>
        <br />
        <asp:TextBox ID="password" runat ="server"></asp:TextBox>
         <br />
        <label id="error" runat="server"></label>
      <div>
      <asp:Button ID="OkButton" runat="server" Text="OK" />
      <asp:Button ID="CancelButton" runat="server" Text="Cancel" />
   </div>
        <br />
        <p>If you do not know the password, you may contact a supervisor to receive the password</p>
    </asp:Panel>

这是用户点击“正常”时触发的脚本:

<script type="text/javascript">

 function onOk() {
 var value = document.getElementById
('<%=password.ClientID%>').value;
 var password = '<%=ConfigurationManager.AppSettings
["UnlockPassword"].ToString() %>'
  if (value == password)
    {
   document.getElementById
  ('<%=TxtBase.ClientID%>').readOnly = false;
    }
  else
  {
  document.getElementById
  ("error").value = "Incorrect Password Please Try Again";
        }
    }
</script>

0x800a138f - JavaScript运行时错误:无法设置属性&#39;值&#39;未定义或空引用

当我使用ID =&#34设置标签时出错:错误&#34;显示错误信息请帮忙!!!!我甚至尝试使用innerHtml我正在使用(IE)。同样为什么模态在它击中else语句后关闭???

1 个答案:

答案 0 :(得分:0)

你不能在回发后保持模态弹出窗口打开,因为从客户端脚本打开模态(我想是这样),但你可以从服务器调用另一个打开命令。

这篇文章可能有所帮助:here