Add Custom Control in Asp.net - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T02:48:00Z http://stackoverflow.com/feeds/question/651091 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/651091/add-custom-control-in-asp-net 1 Add Custom Control in Asp.net Phill Duffy 2009-03-16T16:13:52Z 2009-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#651148 4 Answer by Rob Windsor for Add Custom Control in Asp.net Rob Windsor 2009-03-16T16:28:12Z 2009-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#651176 0 Answer by Rawbert for Add Custom Control in Asp.net Rawbert 2009-03-16T16:33:51Z 2009-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#651178 0 Answer by Flo for Add Custom Control in Asp.net Flo 2009-03-16T16:34:23Z 2009-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#651190 0 Answer by Emilio León for Add Custom Control in Asp.net Emilio León 2009-03-16T16:37:19Z 2009-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: &lt;%@ Register TagPrefix="customcontrolname" Namespace="MyCustomControl" Assembly="MyCustomControl, Version=1.0.0.0, Culture=neutral, PublicKeyToken=123456789abcdefg" %></p> <p>FOR ASCX: &lt;%@ Register Src="~/Controls/MyCustomControl.ascx" TagName="MyCustomControl" TagPrefix="customcontrolname" %></p>