我试图将移动设备重定向到移动版本,但让 Ipads 正常查看它。所有手机都可以重定向到移动站点,但 ipad 也可以,我不知道为什么?...这是我正在使用的脚本。
<scr!pt runat="server">
protected void Page_Load(object sender, EventArgs e)
{
string[] mobiles = new string[] {"midp", "j2me", "avant", "docomo","novarra",
"palmos", "palmsource","240x320", "opwv", "chtml","pda", "windows ce",
"mmp/","blackberry", "mib/", "symbian","wireless", "nokia", "hand",
"mobi","phone", "cdm", "up.b", "audio", "SIE-", "SEC-", "samsung",
"HTC","mot-", "mitsu", "sagem", "sony","alcatel", "lg", "eric", "vx","NEC",
"philips", "mmm", "xx","panasonic", "sharp", "wap", "sch","rover", "pocket",
"benq", "java","pt", "pg", "vox", "amoi","bird", "compal", "kg", "voda","sany",
"kdd", "dbt", "sendo", "sgh", "gradi", "jb", "dddi","moto", "iphone" };
bool isMobile = false;
if (Request.Headers["User-Agent"] != null && Request.Browser["IsMobileDevice"] == "true")
{
isMobile = true;
}
else
{
foreach (string device in mobiles)
{
if (Request.UserAgent.ToLower().Contains(device))
{
isMobile = true;
}
}
}
if (isMobile == true)
{
Response.Redirect("///SITE//");
}
else
{
Response.Redirect("//SITE//");
}
}