ASP怎么实现头像图像随机变换
来源:爱站网时间:2020-06-09编辑:网友分享
最近小编看到有关于头像图像随机变换的问题,那么你知道ASP怎么实现头像图像随机变换吗?接下来就让爱站小编为大家详细介绍ASP实现头像图像随机变换的方法。
最近小编看到有关于头像图像随机变换的问题,那么你知道ASP怎么实现头像图像随机变换吗?接下来就让爱站小编为大家详细介绍ASP实现头像图像随机变换的方法。
复制代码 代码如下:
dim p, ppic, id, body, myCache
randomize
p=Int((3*rnd)+1)
id= Request.QueryString("id")
HttpUrl="http://sms.2e7.net/可爱卡通0"&p&".gif"
Set myCache = new cache
myCache.name = "picindex"&id
If myCache.valid Then
body = myCache.value
Else
body = GetWebData(HttpUrl)
myCache.add body,dateadd("d",1,now)
End If
If Err.Number = 0 Then
Response.CharSet = "UTF-8"
Response.ContentType = "application/octet-stream"
Response.BinaryWrite body
Response.Flush
Else
Wscript.Echo Err.Description
End if
'取得数据
Public Function GetWebData(ByVal strid)
Dim cidpath
cidpath = Mid(strid,1,Instr(8,strid,"/"))
Dim Retrieval
Set Retrieval = Server.CreateObject("Microsoft.XMLHTTP")
With Retrieval
.Open "Get", strid, False,"",""
.setRequestHeader "Referer", cidpath
.Send
GetWebData =.ResponseBody
End With
Set Retrieval = Nothing
End Function
%>
看完本文的介绍后你知道ASP怎么实现头像图像随机变换了吗? 还在纠结不知道怎么实现头像图像随机变换的朋友们赶紧来试试这个方法吧。
上一篇:重启虚拟主机的代码
下一篇:ASP删除指定IIS站点的方法