本文介绍了如何从asp.net中的图像中读取文本。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好朋友,



i有一个注册表格,其中我有验证码字段,我想在按钮点击时用验证码图像中显示的字符串填充文本框。 。



任何建议都会非常有用...

hello friends,

i have a registration form in which i have captcha field and i want to fill the textbox with thee string shown in captcha image on button click..

any suggession will be very helpful...

推荐答案

string sdr= "2345";





然后验证



and then validate that

void btn1_click()
{
if (textbox.text!= sdr)
{
//write error code
}
}





如需更好的信息,请访问





简单:)



For better info visit
How to use Captcha

Its simple :)


这篇关于如何从asp.net中的图像中读取文本。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 04:49