1. 程式人生 > >用Asp.net判斷輸出終端是瀏覽器還是手機

用Asp.net判斷輸出終端是瀏覽器還是手機

public static bool GetClientWeb()
    {
        bool result = false;
        string clientType = string.Concat(HttpContext.Current.Request.UserAgent);
        if (clientType.ToLower().Contains("mozilla") || clientType.ToLower().Contains("opera"))
        {
            result = true;
        }
        return result;
    }