モバイルブラウザ用のMasterPageを作成することから始めることができます(~/Views/Shared/Site.Mobile.Master
):
<%@ Master Language="C#" Inherits="System.Web.Mvc.ViewMasterPage" %>
<!DOCTYPE html>
<html lang="en">
<head runat="server">
<meta charset="utf-8" />
<title></title>
</head>
<body>
This is the mobile master page
<asp:ContentPlaceHolder ID="MainContent" runat="server" />
</body>
</html>
次に、このマスターページを使用するモバイルビュー(~/Views/Home/Index.Mobile.aspx
)を作成します。
<%@ Page
Language="C#"
MasterPageFile="~/Views/Shared/Site.Mobile.Master"
Inherits="System.Web.Mvc.ViewPage"
%>
<asp:Content ID="indexContent" ContentPlaceHolderID="MainContent" runat="server">
This is the mobile view
</asp:Content>
Application_Start
さて、あとは:に表示モードを挿入するだけです。
Func<HttpContextBase, bool> contextCheckDelegate = ctx =>
{
// Here you could use the ctx variable which represents the HttpContextBase
// in order to test the UserAgent of the Request and decide whether it is coming
// from a mobile device or not and return true or false respectively which is what
// will determine if your .Mobile masterpage and view will be used for this request
if (IsMobile)
{
return true;
}
return false;
};
DefaultDisplayMode mobileMode = new DefaultDisplayMode("Mobile");
mobileMode.ContextCondition = contextCheckDelegate;
DisplayModeProvider.Instance.Modes.Insert(0, mobileMode);
もちろん、iPhone、iPadなどのより具体的なモバイルビューを使用することもできます。この場合、ユーザーエージェントをチェックしているデリゲート内で使用される条件を調整するだけで済みます。