我有一个ASP脚本与aspcaptcha其中有评论表单字段,并发送一封电子邮件给网站管理员。然而,如果访问者没有正确输入验证码,他们将被带回表单页面,一条消息表明他们没有正确填写验证码,但表单字段为空。我希望将注释保留在表单字段中,并要求访问者重新填写验证码。
下面是ASP脚本:
if Request.ServerVariables("REQUEST_METHOD") = "POST" then
captha = Trim(Request.Form("captha"))
if CheckCAPTCHA(captha) = true then
我正在为我的网站做验证码,没有花哨和个人使用。我的问题是,当我点击刷新按钮,在验证码框中显示一个新的图像时,验证码文本框也会被重置。
我是这样设置的
protected void btnRefresh_Click(object sender, EventArgs e)
{
//This is the call that creates a new image
FillCaptcha();
// to clear the text box
txtCaptcha.Text = String.Empty;
我有一个名为myimage.aspx的页面,它创建随机验证码图像,
<form id="form1" runat="server">
<div>
<%--<img src="MyImagePage.aspx">--%> //using normal page...this is working fine
<ucImage:ucMyImage ID="myimage" runat="server" /> //using usercon
我正在将验证码控件集成到CreateUserWizard中。
因为我想使用if..根据验证码对用户输入进行验证。否则..。语句。然而,当我试图从createuserwizard向导中获取Captcha控件时,出现了一个错误。
下面是错误:
The name 'Captcha1' does not exist in the current context
我曾尝试将此控件作为文本框、图像、控件,但没有成功。
代码如下:
<asp:CreateUserWizardStep ID="CreateUserWizardStep1" runat="serv
我们将在visual studio 2010中开发asp .net web应用程序。我们使用asp .net成员提供程序进行身份验证。默认情况下,当我在visual studio 2010中创建项目时,它会为sql server提供程序生成身份验证码,而我需要将其更改为MySQL提供程序。有没有人可以指导我,是否可以使用mysql默认创建web应用程序?如果这是可能的,那么怎么做呢?