任何人都可以建议我哪个是验证移动浏览器并重定向到移动网站的更好地方。
我正在考虑使用DetectMobileBrowsers
来验证移动浏览器。
我正在考虑在Application_Start
or中执行此操作Session_Start
。请建议我哪个是做同样事情的更好的地方。
这是我的 Session_Start 块
Protected Sub Session_Start(ByVal sender As Object, ByVal e As EventArgs)
' Fires when the session is started
'Dim request As HttpRequest = HttpContext.Current.Request
'If request.Browser.IsMobileDevice Then
' Response.Redirect("http://localhost:26270/Default.aspx")
'End If
Response.Redirect("http://google.com")
End Sub
谢谢