vote up 0 vote down star

I am trying to render a composite control to a string and write it to the page as such:

Dim sb As New StringBuilder
Dim sw As New StringWriter(sb)
Dim hw As New HtmlTextWriter(sw)
Dim CustomCompositeControl as New MyCustomCompositeControl
CustomCompositeControl.RenderControl(hw)
HttpContext.Current.Response.Write(sb.ToString)

Unfortunately it is merely rendering a empty span tag.

Is it even possible to render CompositeControls into strings as you would, say, a DataGrid?

Without getting into the literal internals of my CompositeControl, is there something I should be making sure of inside the CompositeControl before it can be rendered via RenderControl?

NOTE: I am not overriding the RenderControl in my CompositeControl. Do I need to do that?

UPDATE Ok. I sorta figured this out. I have to make sure my CompositeControl's EnsureChildControls method is called before the RenderControl method runs. I'm just not so sure about the best spot to call it internally.

flag

53% accept rate

2 Answers

vote up 2 vote down

If you have the access to simply call the Render() method, just do that, it will give you the result you're looking for. Otherwise, yes, you will have to override RenderControl()... depending on when you're calling it, you may be able to get away with just calling the Render() method insider RenderControl().

Also, you should note that the top level html tag of your composite control will always be a span, unless you specify it to be something else, like a div:

/// <summary>
/// Render as div instead of the default span.
/// </summary>
/// <value></value>
/// <returns>HtmlTextWriterTag.Div</returns>
protected override HtmlTextWriterTag TagKey
{
   get
   {
      return HtmlTextWriterTag.Div;
   }
}
link|flag
+1 for showing me how to render it as a div, ta. – Generic Error Jul 15 at 11:25
vote up 1 vote down

Yes this is possible to do, but is it possible without understanding the controls internals and its dependancies on various events within the asp.net lifecycle? I don't think that is possible.

A DataGrid probally depends on being inside a form for example and my guess is it would error out indicating there is no form.

link|flag
I'm able to render a bound datagrid straight to the response page without any problems in the same location I'm trying to render this CompositeControl. – Matias Nino Mar 30 at 22:04
I'm tried to render a DataGridView in a simillar manner and ran into issues it's a year since I did this though so I'm not exactly sure. – Josh Mar 30 at 22:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.