如果用户在移动设备上使用网络应用程序,我如何获取移动设备信息。我尝试了这个,但并没有真正帮助,它显示未知
public class TestController : BaseController
{
public String IsMobileDevice()
{
if (HttpContext.Request.Browser.IsMobileDevice)
return String.Format("<H1>{0}</H1>", HttpContext.Request.Browser.MobileDeviceManufacturer);
else
return String.Format("<H1>{0}</H1>", Request.Browser.Browser);
}
}