2017-06-21 1 views
0

Je veux savoir si l'utilisateur vient du bureau ou du mobile. Si c'est à partir de mobile - faire rediriger vers Process to go.Comment rediriger vers le processus pour aller?

Pouvez-vous m'aider s'il vous plaît?

+0

Je ne sais pas ce que signifie "rediriger vers Process to go". Pouvez-vous clarifier cela? Et pourquoi ne pas simplement créer un site réactif au lieu d'envoyer des utilisateurs mobiles ailleurs? Qu'est-ce que cela a à voir avec la balise desktop-application? – mason

Répondre

0

Si vous souhaitez simplement connaître la valeur booléenne, vous pouvez simplement utiliser la méthode d'assistance suivante.

Si vous voulez en savoir plus sur le périphérique demandé, vous devrez utiliser une bibliothèque tierce comme 51Degrees.

public static bool IsMobileBrowser(HttpContext context) 
{ 
    // first try built in asp.net 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; 
    } 

    // Finally check the http_user_agent header variable for any one of the following 
    if (context.Request.ServerVariables["HTTP_USER_AGENT"] != null) 
    { 
     // List of all mobile types 
     string[] mobiles = 
      new[] 
      { 
       "android", "opera mini", "midp", "j2me", "avant", "docomo", "novarra", "palmos", "palmsource", 
       "240×320", "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", "dddi", "moto", "iphone" 
      }; 

     // Check if the header contains that text 
     var userAgent = context.Request.ServerVariables["HTTP_USER_AGENT"].ToLower(); 

     return mobiles.Any(userAgent.Contains); 
    } 

    return false; 
}