文件名称:ASP 编程中你一定会用到的20个实例
文件大小:34KB
文件格式:DOC
更新时间:2015-11-09 15:10:11
asp
1.如何用Asp判断你的网站的虚拟物理路径 答:使用Mappath方法:< %= Server.MapPath("\")% > 2.我如何知道使用者所用的浏览器? 答:使用the Request object方法: <% strBrowser=Request.ServerVariables("HTTP_USER_AGENT") If Instr(strBrowser,"MSIE") < > 0 Then Response.redirect("formSIEOnly.htm") Else Response.redirect("ForAll.htm") End If %>