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

ASP
IIS 错误 Server Application Error 详细解决方法
On Error Resume Next 语句
ASP常用函数:CStrIP()
ASP常用函数:CLngIP()
ASP常用函数:XMLEncode
查看所有的Server Variables的环境变量
随机提取N条记录 推荐
一个可以自动创建多级目录的函数
ASP常用函数收藏乱七八糟未整理版
ASP常用函数:HTMLDecode
15种ASP技巧
ASP常用函数:IIF()
ASP常用函数:ArrayToxml
ASP常用函数:ReplaceHTML
改进性能和样式的24个ASP 技巧
如何将长的标题用省略号收尾
如何保持数据库输出格式不变
学习ASP和编程的28个观点
Asp实现假静态
初学asp者必看

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


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-08-14   浏览: 160 ::
收藏到网摘: 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()