我正在寻找一种方法来HttpContext.Current.Request.Browser.IsMobileDevice
为未受 MVC4 和 51degrees.mobi 检测的自定义移动设备设置为 true,这也用于应用程序。
我在 Global.asax.cs 中试过这个:
protected void Application_PreRequestHandlerExecute(Object sender, EventArgs e)
{
HttpContext.Current.Request.Browser.IsMobileDevice = true;
}
但我得到一个编译错误:
无法将属性或索引器“System.Web.Configuration.HttpCapabilitiesBase.IsMobileDevice”分配给 - 它是只读的
使用 51degrees.mobi、jquery、jquery-ui 和 jquery-ui-mobile。