特色栏目

ASP源码

PHP源码

.NET源码

JSP源码

游戏频道
专题合集
关闭菜单
首页> ASP.NET教程> ASP.NET(c#)语音验证码制作(附源代码)

ASP.NET(c#)语音验证码制作(附源代码)

时间:2009-11-27 16:13:27 作者:互联网

-
最近发现语音验证码越来越流行,比如有次在注册gmail邮箱看到过,还有msn页面也有语音验证码,还有国外一些网站等。
花时间研究了下,语音验证码主要跟一般验证码的区别就在于如何让验证码播放。本文语音验证码原理:从服务器生成验证码,
并保存到cookie中(https://images.downcodes.comgetcode.aspx.cs),当点收听验证码的时候,调用javascirpt操作(这里使用jquery)cookie读取验证码,
然后把验证码传到co***oice.aspx页,然后按顺序把验证码合成生成一个mp3文件,最后把这个文件传入flash中播放,
你将收听的声音为:“当前验证码是5678请输入”。这个原理也是大部分网站使用的语音验证码原理类似。
源码下载:下载 (请使用VS2008 SP1或VS2010打开)
页面上放置验证码图片页面代码
view plaincopy to clipboardprint?

  
   
  
       
th***src='https://images.downcodes.comgetcode.aspx';" src="https://images.downcodes.comgetcode.aspx" mce_src="https://images.downcodes.comgetcode.aspx" align="absmiddle" style="cursor: pointer" mce_style="cursor: pointer" alt="看不清楚,换一张" title="看不清楚,换一张" />  
收听验证码  
   
   
  
   
 

   

    
th***src='https://images.downcodes.comgetcode.aspx';" src="https://images.downcodes.comgetcode.aspx" mce_src="https://images.downcodes.comgetcode.aspx" align="absmiddle" style="cursor: pointer" mce_style="cursor: pointer" alt="看不清楚,换一张" title="看不清楚,换一张" />
收听验证码

   

   


点收听验证码时调用的js函数如下:
view plaincopy to clipboardprint?
function playvoice(id) {  
    var voiceid = do***ent.getElementById(id);  
    var voicecode = $.cookie('ValidateCode');  
    vo***id.innerHTML = "so***_play.swf?" + (new Date().getTime()) + "" mce_src="so***_play.swf?" + (new Date().getTime()) + ""   
FlashVars='isPlay=1&url=co***oice.aspx&code=" + voicecode + "' width='0' height='0' allowScriptAccess='always'   
ype='application/x-shockwave-flash' pluginspage='http://ww***cromedia.com/go/getflashplayer' />";  

function playvoice(id) {
     var voiceid = do***ent.getElementById(id);
     var voicecode = $.cookie('ValidateCode');
     vo***id.innerHTML = "so***_play.swf?" + (new Date().getTime()) + "" mce_src="so***_play.swf?" + (new Date().getTime()) + ""
FlashVars='isPlay=1&url=co***oice.aspx&code=" + voicecode + "' width='0' height='0' allowScriptAccess='always'
type='application/x-shockwave-flash' pluginspage='http://ww***cromedia.com/go/getflashplayer' />";
}


其中$.cookie('ValidateCode')是读取cookie验证码,这里使用了一个jquery操作cookie插件

生成mp3页面代码如下:
     //读取验证码生成mp3,这里包括头部be***.mp3和尾部end.mp3
view plaincopy to clipboardprint?
Re***nse.ContentType = "audio/mpeg";  
           Re***nse.WriteFile("sound/be***.mp3");  
           string checkCode = Ht***ontext.Current.Request.QueryString["code"].ToString();// string checkCode ="8888";  
           if (ch***Code.Length > 0)  
               for (int i = 0; i < ch***Code.Length; i++)  
               {  
                   Re***nse.WriteFile("sound/"+checkCode[i] + ".mp3");  
               }  
           Re***nse.WriteFile("so***/end.mp3"); 
Re***nse.ContentType = "audio/mpeg";
            Re***nse.WriteFile("sound/be***.mp3");
            string checkCode = Ht***ontext.Current.Request.QueryString["code"].ToString();// string checkCode ="8888";
            if (ch***Code.Length > 0)
                for (int i = 0; i < ch***Code.Length; i++)
                {
                    Re***nse.WriteFile("sound/"+checkCode[i] + ".mp3");
                }
            Re***nse.WriteFile("so***/end.mp3");
           

【本文作者分别在cnblogs,csdn,http://www.ajaxcn.net同步发布,转载请保留此说明】
flash播放代码主要在第一帧关键帧右击动作,插入以下代码根据传入的播放数字mp3地址

view plaincopy to clipboardprint?
var mysound = new Sound();  
var mysong = url;  
var isPlay = 1;  
var intnum:Number = setInterval(playSong, 500);  
function playSong() {  
if (isPlay == 1) {  
  my***nd.loadSound(mysong+"?code="+code, true);  
  my***nd.start();  
  clearInterval(intnum);  
  isPlay = 0;  
}  

 

相关文章

相关应用

热门文章

猜你喜欢

返回顶部