Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Courier is wrapping our templates in extra ASP.NET code when we deploy. For example, if our template looks like this:
<%@ Master Language="C#" MasterPageFile="~/umbraco/masterpages/default.master" AutoEventWireup="true" %>
<asp:Content ContentPlaceHolderID="ContentPlaceHolderDefault" runat="server">
<h1>This is our template</h1>
</asp:Content>
After Courier sends it to the other site, it looks like this:
</asp:Content></asp:Content>
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Courier wraps templates in additional code
Courier is wrapping our templates in extra ASP.NET code when we deploy. For example, if our template looks like this:
<%@ Master Language="C#" MasterPageFile="~/umbraco/masterpages/default.master" AutoEventWireup="true" %>
<asp:Content ContentPlaceHolderID="ContentPlaceHolderDefault" runat="server">
<h1>This is our template</h1>
</asp:Content>
After Courier sends it to the other site, it looks like this:
<%@ Master Language="C#" MasterPageFile="~/umbraco/masterpages/default.master" AutoEventWireup="true" %>
<asp:Content ContentPlaceHolderID="ContentPlaceHolderDefault" runat="server">
<%@ Master Language="C#" MasterPageFile="~/umbraco/masterpages/default.master" AutoEventWireup="true" %>
<asp:Content ContentPlaceHolderID="ContentPlaceHolderDefault" runat="server">
<h1>This is our template</h1>
</asp:Content>
</asp:Content>
is working on a reply...