UserControl's RenderControl is asking for a form tag in (C# .NET) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T10:40:14Z http://stackoverflow.com/feeds/question/334382 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/334382/usercontrols-rendercontrol-is-asking-for-a-form-tag-in-c-net 3 UserControl's RenderControl is asking for a form tag in (C# .NET) Jon Smock 2008-12-02T15:45:28Z 2008-12-03T17:46:00Z <p>I asked <a href="http://stackoverflow.com/questions/288409/how-do-i-get-the-html-output-of-a-usercontrol-in-net-c">how to render a UserControl's HTML</a> and got the code working for a dynamically generated UserControl.</p> <p>Now I'm trying to use LoadControl to load a previously generated Control and spit out its HTML, but it's giving me this:</p> <p><em>Control of type 'TextBox' must be placed inside a form tag with runat=server.</em></p> <p>I'm not actually adding the control to the page, I'm simply trying to grab its HTML. Any ideas?</p> <p>Here's some code I'm playing with:</p> <pre><code>TextWriter myTextWriter = new StringWriter(); HtmlTextWriter myWriter = new HtmlTextWriter(myTextWriter); UserControl myControl = (UserControl)LoadControl("newUserControl.ascx"); myControl.RenderControl(myWriter); return myTextWriter.ToString(); </code></pre> http://stackoverflow.com/questions/334382/usercontrols-rendercontrol-is-asking-for-a-form-tag-in-c-net/334405#334405 0 Answer by Bob for UserControl's RenderControl is asking for a form tag in (C# .NET) Bob 2008-12-02T15:48:59Z 2008-12-02T16:09:52Z <p>You can either add a form to your user control, or use a regular html input box</p> <pre><code> &lt;input type="text" /&gt; </code></pre> <p>Edit: If you are trying to do something AJAXy, maybe you want something like this <a href="http://aspadvice.com/blogs/ssmith/archive/2007/10/19/Render-User-Control-as-String-Template.aspx" rel="nofollow">http://aspadvice.com/blogs/ssmith/archive/2007/10/19/Render-User-Control-as-String-Template.aspx</a></p> <pre><code> public static string RenderView&lt;D&gt;(string path, D dataToBind) { Page pageHolder = new Page(); UserControl viewControl = (UserControl) pageHolder.LoadControl(path); if(viewControl is IRenderable&lt;D&gt;) { if (dataToBind != null) { ((IRenderable&lt;D&gt;) viewControl).PopulateData(dataToBind); } } pageHolder.Controls.Add(viewControl); StringWriter output = new StringWriter(); HttpContext.Current.Server.Execute(pageHolder, output, false); return output.ToString(); } </code></pre> <p>You can remove the data binding part if not needed.</p> http://stackoverflow.com/questions/334382/usercontrols-rendercontrol-is-asking-for-a-form-tag-in-c-net/334442#334442 0 Answer by TcKs for UserControl's RenderControl is asking for a form tag in (C# .NET) TcKs 2008-12-02T15:57:25Z 2008-12-02T15:57:25Z <p>You can add the control into page, render html and then remove the control from page.</p> <p>Or try this:</p> <pre><code>Page tmpPage = new TempPage(); // temporary page Control tmpCtl = tmpPage.LoadControl( "~/UDynamicLogin.ascx" ); tmpPage.Form.Controls.Add( tmpCtl ); StringBuilder html = new StringBuilder(); using ( System.IO.StringWriter swr = new System.IO.StringWriter( html ) ) { using ( HtmlTextWriter writer = new HtmlTextWriter( swr ) ) { tmpForm.RenderControl( writer ); } } </code></pre> http://stackoverflow.com/questions/334382/usercontrols-rendercontrol-is-asking-for-a-form-tag-in-c-net/337224#337224 1 Answer by Jon Smock for UserControl's RenderControl is asking for a form tag in (C# .NET) Jon Smock 2008-12-03T14:12:28Z 2008-12-03T15:52:03Z <p>This is a dirty solution I used for the moment (get it working then get it right, right?).</p> <p>I had already created a new class that inherits the UserControl class and from which all other "UserControls" I created were derived. I called it formPartial (nod to Rails), and this is going inside the public string renderMyHTML() method:</p> <pre><code>TextWriter myTextWriter = new StringWriter(); HtmlTextWriter myWriter = new HtmlTextWriter(myTextWriter); UserControl myDuplicate = new UserControl(); TextBox blankTextBox; foreach (Control tmpControl in this.Controls) { switch (tmpControl.GetType().ToString()) { case "System.Web.UI.LiteralControl": blankLiteral = new LiteralControl(); blankLiteral.Text = ((LiteralControl)tmpControl).Text; myDuplicate.Controls.Add(blankLiteral); break; case "System.Web.UI.WebControls.TextBox": blankTextBox = new TextBox(); blankTextBox.ID = ((TextBox)tmpControl).ID; blankTextBox.Text = ((TextBox)tmpControl).Text; myDuplicate.Controls.Add(blankTextBox); break; // ...other types of controls (ddls, checkboxes, etc.) } } myDuplicate.RenderControl(myWriter); return myTextWriter.ToString(); </code></pre> <p>Drawbacks off the top of my head:</p> <ol> <li>You need a case statement with every possible control (or controls you expect).</li> <li>You need to transfer all the important attributes from the existing control (textbox, etc) to the new blank control.</li> <li>Doesn't take full advantage of Controls' RenderControl method.</li> </ol> <p>It'd be easy to mess up 1 or 2. Hopefully, though, this helps someone else come up with a more elegant solution.</p> http://stackoverflow.com/questions/334382/usercontrols-rendercontrol-is-asking-for-a-form-tag-in-c-net/338061#338061 3 Answer by Tom Jelen for UserControl's RenderControl is asking for a form tag in (C# .NET) Tom Jelen 2008-12-03T17:46:00Z 2008-12-03T17:46:00Z <p>Alternatively you could disable the ServerForm/Event-validation on the page that is rendering the control to a string.</p> <p>The following example illustrates how to do this.</p> <pre><code>public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { string rawHtml = RenderUserControlToString(); } private string RenderUserControlToString() { UserControl myControl = (UserControl)LoadControl("WebUserControl1.ascx"); using (TextWriter myTextWriter = new StringWriter()) { using (HtmlTextWriter myWriter = new HtmlTextWriter(myTextWriter)) { myControl.RenderControl(myWriter); return myTextWriter.ToString(); } } } public override void VerifyRenderingInServerForm(Control control) { /* Do nothing */ } public override bool EnableEventValidation { get { return false; } set { /* Do nothing */} } } </code></pre>