wap站获取上网用户手机型号的方法 .net的写法

wap站获取上网用户手机型号的方法 .net的写法
protected string userPhonetype = "";   
                                            //先定义一个protected变量,为了前台方便取(上网用户的手机品 牌型号)

string userAgent = Request.ServerVariables.Get("HTTP_USER_AGENT");
                                                                                                           //request用户手机的 User-Agent
        string[] agent = userAgent.Split('/');                      
                                                                                                 //用“/”把userAgent中取得的信息拆分
        if (agent.Length > 0)
        {
            userPhonetype = agent[0];                     //其中,“/”拆分的第一项的内容就是用户的手机品牌信息
        }

你可能感兴趣的:(c#)