1

我正在使用 ASP.NET 1.1,我的验证摘要和验证控件工作时遇到问题。单击按钮时,不会触发必填字段验证等。我该如何解决?

这是代码:

<asp:ValidationSummary id="EsppDataInputValidationSummary" runat="server" Font-Names="Arial" Font-Size="8pt" HeaderText="Please Correct the following error(s):" DisplayMode="List" ShowSummary="True"></asp:ValidationSummary></TD>

<asp:RequiredFieldValidator id="Validator1" runat="server" Font-Size="8pt" Font-Names="Arial"
ControlToValidate="txtPrice" Display="None" ErrorMessage="Please enter the Price"></asp:RequiredFieldValidator>

<asp:textbox onblur="return ValidateLength(this)" style="Z-INDEX: 0; TEXT-ALIGN: right" id="txtPurchasePrice" onkeypress="return IsValidChar(event);" onkeyup="return ValidateLength(this)" runat="server" Width="160px" MaxLength="10"></asp:textbox>

<asp:button id="btnAdd" runat="server" Text="Add"></asp:button>"
4

1 回答 1

0

我认为问题可能是您没有Page.IsValid在代码隐藏中测试该属性,但由于您没有显示它,我无法确定。您需要在做任何事情之前对其进行测试,否则您的表单将被提交,您将永远无法真正看到您的验证摘要......

所以,在你的onClick事件处理程序中,你现在做所有事情的地方我认为:

if(Page.IsValid)
{
//do the actions you wish here
}
于 2013-07-03T13:40:09.317 回答