c_c++技巧集

源代码在线查看: 网站如何同时支持浏览器和wap浏览解决方法一例.txt

软件大小: 402 K
上传用户: jhjfjh22544
关键词: c_c
下载地址: 免注册下载 普通下载 VIP

相关代码

				作者:asp2001
				email: asp2001@163.net
				日期:2000-07-13 08:34:52
				原理就是先判断http_user_agent的类型,如果是浏览器就response.redirect到
				html文件,如果是wap就输出wml类型文件(好象不能用response.redirect到wml文件):
				下面是我自己的一个例子,算是抛砖引玉,如果您有更高明的,不妨帖在下面。
				
				default.asp
				
								useragent=request.serverVariables("http_user_agent")
				if instr(useragent,"MSIE") or instr(useragent,"Netscape") then 
				response.redirect "index.htm"
				else
				%>
				
				
				
				
				
				
				
				  
				  
				  welcome to......
				  
				
				
								end if
				%>			

相关资源