UserControl's RenderControl is asking for a form tag in (C# .NET) - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T10:40:14Zhttp://stackoverflow.com/feeds/question/334382http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/334382/usercontrols-rendercontrol-is-asking-for-a-form-tag-in-c-net3UserControl's RenderControl is asking for a form tag in (C# .NET)Jon Smock2008-12-02T15:45:28Z2008-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#3344050Answer by Bob for UserControl's RenderControl is asking for a form tag in (C# .NET)Bob2008-12-02T15:48:59Z2008-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> <input type="text" />
</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<D>(string path, D dataToBind)
{
Page pageHolder = new Page();
UserControl viewControl = (UserControl) pageHolder.LoadControl(path);
if(viewControl is IRenderable<D>)
{
if (dataToBind != null)
{
((IRenderable<D>) 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#3344420Answer by TcKs for UserControl's RenderControl is asking for a form tag in (C# .NET)TcKs2008-12-02T15:57:25Z2008-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#3372241Answer by Jon Smock for UserControl's RenderControl is asking for a form tag in (C# .NET)Jon Smock2008-12-03T14:12:28Z2008-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#3380613Answer by Tom Jelen for UserControl's RenderControl is asking for a form tag in (C# .NET)Tom Jelen2008-12-03T17:46:00Z2008-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>