我想在 Web 表单应用程序中实现 MVC 视图引擎行为。要在 MVC 中注册移动频道,我通常会做这样的事情
public static List<string> UaSurfpads = new List<string>()
{
"iPad",
"MicrosoftRt",
"PlayBook"
};
protected void Application_Start(object sender, EventArgs e)
{
// register surfpads
foreach (string device in UaSurfpads)
{
DisplayModeProvider.Instance.Modes.Insert(0, new DefaultDisplayMode("mobile")
{
ContextCondition = (context => context != null && context.GetOverriddenUserAgent().IndexOf(device, StringComparison.OrdinalIgnoreCase) >= 0)
});
}
// ...
}
这将使我能够创建阴影视图,例如myView.mobile.cshtml
.
在 asp.net 中使用常规 Web 表单是否有类似的工作方式?