当前位置: 首页 > 图文教程 > 网络编程 > ASP > ASP实例:使用ASP生成图片彩色校验码

ASP
使用索引服务器 - 创建ASP页面
使用索引服务器 - 增加属性
用TDC建立自己的数据库格式
较长text型数据无法在Asp页面中取出的解决办法
用ASP控制Flash
计算ASP页面的载入时间
页面延迟的两个简单方法
将ASP生成的内容写入响应流中最有效的方法
如何使用asp创建dsn?
清除浏览器历史记录代码
不离开页面刷新数据
得到表中字段属性代码
用js制作完善的日,月组合下拉框.
WEB页面实现淡入淡出菜单
不用组件来实现StrCat函数的功能
不用java的垂直滚动看板
使用Server.scripttimeout来减少ASP意外错误而使务器瘫痪
ODBC Drivers错误80004005的解决办法
用ASP方式实现动态伸缩形式列表主页
如何使ASP程序暂停指定的时间后再继续执行

ASP实例:使用ASP生成图片彩色校验码


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-08-14   浏览: 116 ::
收藏到网摘: n/a

使用ASP生成图片彩色校验码

49行代码,三个文件
       Asp文件:Code.Asp
       数据文件:body.Fix , Head.Fix 
       用法:<img src="code.asp">

以下为引用的内容:
<%Option ExplicitResponse.buffer=trueNumCodeFunction NumCode()    Response.Expires = -1    Response.AddHeader "Pragma","no-cache"    Response.AddHeader "cache-ctrol","no-cache"    dim zNum,i,j    dim Ados,Ados1    Randomize timer    zNum = cint(8999*Rnd+1000)    Session("GetCode") = zNum    dim zimg(4),NStr        NStr=cstr(zNum)        For i=0 to 3            zimg(i)=cint(mid(NStr,i+1,1))        Next    dim Pos    set Ados=Server.CreateObject("Adodb.Stream")        Ados.Mode=3        Ados.Type=1        Ados.Open    set Ados1=Server.CreateObject("Adodb.Stream")        Ados1.Mode=3        Ados1.Type=1        Ados1.Open        Ados.LoadFromFile(Server.mappath("body.Fix"))        Ados1.write Ados.read(1280)        for i=0 to 3            Ados.Position=(9-zimg(i))*320            Ados1.Position=i*320            Ados1.write ados.read(320)        next            Ados.LoadFromFile(Server.mappath("head.fix"))        Pos=lenb(Ados.read())        Ados.Position=Pos        for i=0 to 9 step 1            for j=0 to 3                Ados1.Position=i*32+j*320                Ados.Position=Pos+30*j+i*120                Ados.write ados1.read(30)            next        next        Response.ContentType = "image/BMP"        Ados.Position=0        Response.BinaryWrite Ados.read()        Ados.Close:set Ados=nothing        Ados1.Close:set Ados1=nothingEnd Function' Asp code Created by BlueIdea.COM Web Team V37 2003-7-25%>

       代码解释:

以下为引用的内容:
Response.buffer=true
NumCode
Function NumCode()