Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 ASP.Net 中有没有办法动态设置控制适配器?应用控制适配器的标准方法是通过“.browser”文件。但是,我有一种情况,我想在某些情况下使用控制适配器,而不是在其他情况下 - 我找不到实现此目的的方法。
任何帮助表示赞赏。
你想要的代码是:
Type controlType = typeof(HtmlForm); Type adapterType = typeof(MyHtmlFormAdapter); HttpContext.Current.Request.Browser.Adapters[controlType.AssemblyQualifiedName] = adapterType.AssemblyQualifiedName;