0
我在內發現TextBox
裏面CreateUserWizard
有問題。這個文本框有CustomValidator
。當我把CustomValidator
外CreateUserWizard
它說cannot find controltovalidate control id CaptchaValue
customvalidator無法找到controltovalidate
這是在我的CreateUserWizard
<CreateUserWizard>
<tr>
<td align="left">
<asp:TextBox ID="CaptchaValue" runat="server" CssClass="texty"></asp:TextBox>
</td>
</tr>
</CreateUserWizard>
行,我有一個CustomValidator
外CreateUserWizard
:
<asp:CustomValidator ID="CustomValidator5" runat="server" ControlToValidate="CaptchaValue"
ErrorMessage="Image value must match"
ValidationGroup="CreateUserWizard1" EnableClientScript="False">
</asp:CustomValidator>