diff options
Diffstat (limited to 'projecttemplates/MvcRelyingParty/Views/Home/Index.aspx')
-rw-r--r-- | projecttemplates/MvcRelyingParty/Views/Home/Index.aspx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/projecttemplates/MvcRelyingParty/Views/Home/Index.aspx b/projecttemplates/MvcRelyingParty/Views/Home/Index.aspx new file mode 100644 index 0000000..ddd2ffe --- /dev/null +++ b/projecttemplates/MvcRelyingParty/Views/Home/Index.aspx @@ -0,0 +1,12 @@ +<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %> + +<asp:Content ID="indexTitle" ContentPlaceHolderID="TitleContent" runat="server"> + Home Page +</asp:Content> + +<asp:Content ID="indexContent" ContentPlaceHolderID="MainContent" runat="server"> + <h2><%= Html.Encode(ViewData["Message"]) %></h2> + <p> + To learn more about ASP.NET MVC visit <a href="http://asp.net/mvc" title="ASP.NET MVC Website">http://asp.net/mvc</a>. + </p> +</asp:Content> |