服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|JAVA教程|ASP教程|

服务器之家 - 编程语言 - ASP教程 - asp WAP获取手机终端信息的一段代码

asp WAP获取手机终端信息的一段代码

2019-10-07 10:27asp代码网2 ASP教程

asp WAP获取手机终端信息的一段代码

代码如下:


<%  
Dim Ip,number,mobiletype,loca,uri  
Dim Conn,Sql,Rs  

Ip=Request.ServerVariables("REMOTE_ADDR")  
uri=Request.ServerVariables("PATH_INFO")  

number1=Request.ServerVariables ( "HTTP_x-up-calling-line-id" )  
mobile1=Request.ServerVariables ( "HTTP_User-Agent" )  
number = Right(number1,Len(number1)-2)   
mobile2 = Split(mobile1,"/")  
mobiletype=mobile2(0)  
loca=Request.Cookies( "CUI" )  

Sql="Select * From Visitor order By Id DESC"  
Rs.Open Sql,Conn,1,3  

Rs.Addnew  
Rs("SDate")=date  
Rs("STime")=time  
Rs("IP")=Ip  
Rs("UserNo")=number  
Rs("MobileType")=mobiletype  
Rs("CUI")=loca  
Rs("URI")=uri  

Rs.Update  
Rs.Close  

Conn.Close  
Set Rs=Nothing  
Set Conn=Nothing  
%>  

 

延伸 · 阅读

精彩推荐