asp獲得瀏覽器agent信息代碼
當(dāng)前位置:點(diǎn)晴教程→知識(shí)管理交流
→『 技術(shù)文檔交流 』
WEB開(kāi)發(fā)經(jīng)常用到各個(gè)主流瀏覽器的userAgent信息,我們來(lái)看看asp如何來(lái)獲取呢 使用范例一 <% 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獲取當(dāng)前瀏覽器UA的方法: <% dim ua ua=Request.ServerVariables("HTTP_USER_AGENT") response.write ua %> 該文章在 2023/10/25 14:47:15 編輯過(guò) |
關(guān)鍵字查詢(xún)
相關(guān)文章
正在查詢(xún)... |