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フォームを使用して作業する同様の方法はありますか?