0

我在 CreateUserWizard 中集成了一个 Captcha 控件。

我在这里从这个网站获得了验证码控制示例代码

因为我想使用 if.. else.. 语句对基于验证码的用户输入进行验证。但是,当我尝试从 createuserwizard 获取验证码控件时发生错误。

这是错误:

The name 'Captcha1' does not exist in the current context

我曾尝试将此控件作为文本框、图像、控件,但没有成功。

这是代码:

 <asp:CreateUserWizardStep ID="CreateUserWizardStep1" runat="server">
              <ContentTemplate>

 <tr>
                            <td class="style4">Answer:</td>
                            <td>
                                <cc1:CaptchaControl ID="Captcha1" runat="server"
                                 CaptchaBackgroundNoise="Medium" CaptchaLength="5"
                                 CaptchaHeight="55" CaptchaWidth="200"
                                 CaptchaLineNoise="None" CaptchaMinTimeout="5"
                                 CaptchaMaxTimeout="240" FontColor = "#FF33CC" CaptchaFontWarping="Medium" />

                                 <asp:TextBox runat="server" ID="txtCaptcha" />

                            </td>
                        </tr>
 </ContentTemplate>

              </asp:CreateUserWizardStep>

后面的代码:

protected void CreateUserWizard1_CreatedUser(object sender, EventArgs e)
    {
        //Control Captcha1 = (Control)CreateUserWizardStep1.ContentTemplateContainer.FindControl("Captcha1");
        TextBox txtCaptcha = (TextBox)CreateUserWizardStep1.ContentTemplateContainer.FindControl("txtCaptcha");

            Captcha1.ValidateCaptcha(txtCaptcha.Text.Trim());//error occurred here

        if (Captcha1.UserValidated)//error occurred here
        {

     }

} 
4

1 回答 1

1

试试这个在 CreateUserWizard 中找到控件

文本框 txtCaptcha = (TextBox)CreateUserWizardStep1.CreateUserStep.ContentTemplateContainer.FindControl("txtCaptcha");

于 2012-07-29T18:38:19.827 回答