在asp.net中,使用这个结构,我如何检测新的Microsoft“Edge”浏览器?
Dim wrkBrowser As String = "" Dim wrkBrowserType As String = HttpContext.Current.Request.Browser.Type If InStr(wrkBrowserType,"Chrome") <> 0 Then wrkBrowser = "Chrome" End If If InStr(wrkBrowserType,"MSIE") <> 0 Then wrkBrowser = "IE" End If If InStr(wrkBrowserType,"FireFox") <> 0 Then wrkBrowser = "FF" End If