我想在Web窗體應用程序中實現MVC View Engine行爲。要註冊在MVC移動信道中我通常會做這樣的事情查看非MVC Web應用程序的引擎
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表單工作?
正是我在找,謝謝 –