我有一个面板的 asp.net 应用程序。在该面板内,我有一个图像按钮和textbox
. 我已经为文本框编写了一个 javascript 验证函数,它将显示警报框,以便在textbox
. 现在这个函数不工作了,给出了运行时错误:
所需对象
我的代码在这里:
<asp:Panel ID="pnlTop" runat="server">
<tr height="35px" valign="top">
<td align="right" valign="middle" colspan="2" height="50">
<asp:ImageButton ID="imgbtnGOTO" runat="server" ToolTip="View Specific Record" BorderWidth="0"
ImageAlign="AbsMiddle" OnClientClick="javascript:return fnCheck()"></asp:ImageButton>
<asp:TextBox ID="txtPagingGoto" CssClass="clsTableCellLeft" Width="215px" runat="server" CausesValidation="true"></asp:TextBox>
</td>
</tr>
</asp:Panel>
我的 Javascript 函数是:
function fnCheck() {
if ((document.getElementById("txtPagingGoto").value).length == 0) {
alert("The textbox should not be empty");
}
}
请为此提出解决方案。