重定向到自己的页面

时间:2012-08-17 07:08:37

标签: c# asp.net mobile-website

我是asp.net C#的新手。

我正在为移动用户创建一个网站。

我想将页面重定向到用户移动版及其平台。

我不想使用WURFL

以及此http://51degrees.codeplex.com/

是否有其他可能的方法为不同的移动用户创建页面?

例如android(冰淇淋)和android(姜饼)等的不同页面......

2 个答案:

答案 0 :(得分:2)

像这样使用Request.UserAgent

if(Request.UserAgent.Contains("Android"))
{
    Response.Redirect("Andriod/MyPage.aspx");
}

版本检查也可以用同样的方式完成。所有流行的Os /浏览器的用户代理都可以在互联网上找到。

答案 1 :(得分:1)

您可以使用JavaScripts Navigator。像这样:

p = navigator.platform;

// Detects if it is an iOS device
if( p === 'iPad' || p === 'iPhone' || p === 'iPod' ){
    //iOS = true;
    //Redirect
}

// Detects if it is an Android device
if(p.indexOf("android")>=0);
    //Android= true;
    //Redirect
}

var iOS = ( navigator.userAgent.match(/(iPad|iPhone|iPod)/i) ? true : false );
if(iOS)
    //Redicret