我目前正在开发一个Visual Basic Web应用程序。如果用户通过手机访问该应用,应该会将该用户发送到该网站的移动版本。但是,如果它是平板电脑(或桌面),它仍应该转到完整的网站。
这是我目前所拥有的,但它没有考虑到不同的像素密度等等。
If Request.Browser.ScreenPixelsWidth < 600 And Request.Browser.ScreenPixelsHeight < 1024 And Request.Browser.IsMobileDevice Then
Response.Redirect("http://localhost:9999/mobile")
End If
先谢谢你