誰かが私にモバイルブラウザを確認してモバイルサイトにリダイレクトするのに適した場所を提案できますか?
DetectMobileBrowsers
モバイルブラウザの検証に使用することを考えています。
そして、私はこれをApplication_Start
またはで行うことを考えてい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
ありがとう