4

現在、大規模なASP.Net WebフォームWebサイトがあり、その一部をasp.netMVcに変換し始めたところです。

モバイルクライアント専用のサイトのバージョンを作成したいと考えており、そのためにMVCの使用を開始したいと思います。

MVCは、慣例により、.mobileで終わるビューファイルがモバイルクライアントに提供されることをサポートしていることを知っています。しかし、私の質問は、デスクトップクライアントは引き続きdefault.aspxを使用しますが、モバイルクライアントは/homeにリダイレクトされるように一般的にどのように設定するのでしょうか。

4

3 に答える 3

4

ブラウザー検出用のコードは、すべてのページの派生元となる基本クラスに配置する必要があります。以下のコードを試してください:

protected void Page_Load(object sender, EventArgs e)
{
    if (IsMobileBrowser())
    {
         Response.Redirect("/home");    
         return;      
    }

    // your other code
} 

public static bool IsMobileBrowser()
{
    //GETS THE CURRENT USER CONTEXT
    HttpContext context = HttpContext.Current;

    //FIRST TRY BUILT IN ASP.NT CHECK
    if (context.Request.Browser.IsMobileDevice)
    {
        return true;
    }
    //THEN TRY CHECKING FOR THE HTTP_X_WAP_PROFILE HEADER
    if (context.Request.ServerVariables["HTTP_X_WAP_PROFILE"] != null)
    {
        return true;
    }
    //THEN TRY CHECKING THAT HTTP_ACCEPT EXISTS AND CONTAINS WAP
    if (context.Request.ServerVariables["HTTP_ACCEPT"] != null && 
        context.Request.ServerVariables["HTTP_ACCEPT"].ToLower().Contains("wap"))
    {
        return true;
    }
    //AND FINALLY CHECK THE HTTP_USER_AGENT 
    //HEADER VARIABLE FOR ANY ONE OF THE FOLLOWING
    if (context.Request.ServerVariables["HTTP_USER_AGENT"] != null)
    {
        //Create a list of all mobile types
        string[] mobiles =new[]
        {
              "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"
        };

        //Loop through each item in the list created above 
        //and check if the header contains that text
        foreach (string s in mobiles)
        {
            if(context.Request.ServerVariables["HTTP_USER_AGENT"].ToLower().Contains(s.ToLower()))
            {
                return true;
            }
        }
    }

    return false;
}

詳細については、次を参照してください。

http://www.codeproject.com/Articles/213825/ASP-net-Mobile-device-detection

http://www.codeproject.com/Articles/34422/Detecting-a-mobile-browser-in-ASP-NET

于 2013-02-28T02:15:00.817 に答える
0

このようにしてみてください

if (request.Browser.IsMobileDevice)
{
 //rediret the user to mobile views
}

必ず Webform View Engine を削除してください。このような。MobileCompatibleViewEngine

ViewEngines.Engines.Remove(ViewEngines.Engines.OfType<WebFormViewEngine>().First());
ViewEngines.Engines.Add(new MobileCapableWebFormViewEngine()); // this will come from Nuget Package. 
于 2013-02-28T04:27:14.107 に答える