作用:将页面中的电话号码生成图片格式。 <% Call Com_CreatValidCode(Request.QueryString("tel")) Public Sub Com_CreatValidCode(pTel) '----------禁止缓存 Response.Expires = 0 Response.AddHeader "Pragma","no-cache" Response.AddHeader "cache-ctrol","no-cache" Response.ContentType = "Image/BMP" Randomize Dim i, ii, iii ,rndColor,strLen,sql,rs Const cOdds = 5 '------------杂点出现的机率 Const str="0123456789-" strLen = len(pTel) rndColor = ChrB(cint(rnd*255)) & ChrB(cint(rnd*255)) ...