I have a website created with Composite C1, and I'm attempting to display a user control on a page using the Composite.AspNet.LoadUserControl function. Just following the example on the website with a very simple user control that simply outputs hello world in a heading 1 element doesn't seem to show anything. You can see the page here:
http://wallbro.plazacommerce.com/Contact
Where the user control is supposed to be rendered within the HTML, all I see is:
<c1marker:marker xmlns:c1marker="http://www.composite.net/ns/asp.net/controls" key="[Composite.Function.Render.Asp.Net.Control.0]" />
The user control consists of:
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="Test.ascx.cs" Inherits="Frontend_Controls_Test" %>
<h1>Hello</h1>
Is there anything else that I need to do? I can't find any other help on this issue, and it seems so simple that it must be something obvious that I'm doing wrong.