asp獲得瀏覽器agent信息代碼
當前位置:點晴教程→知識管理交流
→『 技術文檔交流 』
WEB開發經常用到各個主流瀏覽器的userAgent信息,我們來看看asp如何來獲取呢 使用范例一 <% dim a a = Browsr if InStr( a, "MSIE" ) then ' browser is Internet Explorer else ' browser is some other type... end if %> ASP Source Code: <% Private Function Browsr() Browsr = Request.ServerVariables("HTTP_USER_AGENT") End Function %> 范例二: ASP獲取當前瀏覽器UA的方法: <% dim ua ua=Request.ServerVariables("HTTP_USER_AGENT") response.write ua %> 該文章在 2023/10/25 14:47:15 編輯過 |
關鍵字查詢
相關文章
正在查詢... |