Add Custom Control in Asp.net - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T02:48:00Zhttp://stackoverflow.com/feeds/question/651091http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/651091/add-custom-control-in-asp-net1Add Custom Control in Asp.netPhill Duffy2009-03-16T16:13:52Z2009-03-16T16:37:19Z
<p>I am creating a new Panel..</p>
<pre><code> public class LicensingPanel : Panel
{
private LinkButton licenseButton;
...
}
</code></pre>
<p>I am then in the code adding my controls to the Controls property, one of which is a LinkButton.</p>
<p>What I want to be able to do on my Page code behind is the following..</p>
<pre><code>protected override void CreateChildControls()
{
Controls.Add(new LicensingPanel(this));
base.CreateChildControls();
}
</code></pre>
<p>But I am getting this error message:</p>
<p>Control 'ctl03' of type 'LinkButton' must be placed inside a form tag with runat=server. at System.Web.UI.Page.VerifyRenderingInServerForm(Control control) </p>
<p>The page is a SharePoint page with a master page, it has a Form tag with runat=server.</p>
<p>Any help is greatly received!</p>
<p>Best Regards,</p>
<p>Phill</p>
http://stackoverflow.com/questions/651091/add-custom-control-in-asp-net/651148#6511484Answer by Rob Windsor for Add Custom Control in Asp.netRob Windsor2009-03-16T16:28:12Z2009-03-16T16:28:12Z<p>Any page with a MasterPage, whether it is in SharePoint or not, is a Content Page. These pages only support content contained in Content controls. Attempting to add an HTML tag or ASP.NET control directly to the page is not supported. </p>
http://stackoverflow.com/questions/651091/add-custom-control-in-asp-net/651176#6511760Answer by Rawbert for Add Custom Control in Asp.netRawbert2009-03-16T16:33:51Z2009-03-16T16:33:51Z<p>Where on the page is the control of your type LicensingPanel ? This control needs to be inside the form tag.</p>
http://stackoverflow.com/questions/651091/add-custom-control-in-asp-net/651178#6511780Answer by Flo for Add Custom Control in Asp.netFlo2009-03-16T16:34:23Z2009-03-16T16:34:23Z<p>I think you should tell us a little bit more about what you want to archive with your code.
Where are you trying to add your control? </p>
http://stackoverflow.com/questions/651091/add-custom-control-in-asp-net/651190#6511900Answer by Emilio León for Add Custom Control in Asp.netEmilio León2009-03-16T16:37:19Z2009-03-16T16:37:19Z<p>Hello Phill</p>
<p>I think that you need to complete some steps before you can use a certain control inside a MOSS 2007 environment:</p>
<ol>
<li>You must register your custom controls DLL as safe.</li>
<li>You must register your custom control in the master page in order for the server to recognize the tag. </li>
</ol>
<p>FOR DLL: <%@ Register TagPrefix="customcontrolname" Namespace="MyCustomControl" Assembly="MyCustomControl, Version=1.0.0.0, Culture=neutral, PublicKeyToken=123456789abcdefg" %></p>
<p>FOR ASCX: <%@ Register Src="~/Controls/MyCustomControl.ascx" TagName="MyCustomControl" TagPrefix="customcontrolname" %></p>