You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
649 B
26 lines
649 B
<?xml version="1.0"?> |
|
<Template author="Matt Ward" version="1.0"> |
|
|
|
<Config |
|
name="MVC View Content Page" |
|
icon="VB.File.WebFile" |
|
category="VB" |
|
subcategory="ASP.NET MVC" |
|
defaultname="ViewContentPage${Number}.aspx" |
|
language="VBNET"/> |
|
|
|
<Description>MVC View Content Page</Description> |
|
|
|
<Files> |
|
<File name="${FullName}" language="VBNET"> |
|
<![CDATA[<%@ Page Language="VB" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %> |
|
|
|
<asp:Content ContentPlaceHolderId="Title" runat="server"> |
|
</asp:Content> |
|
|
|
<asp:Content ContentPlaceHolderId="Main" runat="server"> |
|
</asp:Content> |
|
]]> |
|
</File> |
|
</Files> |
|
</Template>
|
|
|