vote up 0 vote down star

Hi I have a custom control which i need to use in another custom control. I have written all code at server side (no HTML). can anyone tell me how to write below line of code in code behind using htmlTextWriter and how to register this control or how to write custom control within another where html is written from code behind.

flag

2 Answers

vote up 0 vote down

Thankx it works.. i was missing only one line--

innerControl.RenderControl(writer);

link|flag
vote up 1 vote down

First, build a simple custom web control:

namespace My.Controls
{
    public class InnerControl : Control
    {
        protected override void Render(HtmlTextWriter writer)
        {
            writer.WriteLine("<h1>Inner Control</h1>");
        }
    }
}

Then build your second web control that contains and renders the first:

namespace My.Controls
{
    public class OuterControl : Control
    {
        protected override void Render(HtmlTextWriter writer)
        {
            writer.WriteLine("<h1>Outer Control</h1>");
            InnerControl innerControl = new InnerControl();
            innerControl.RenderControl(writer);
        }
    }
}

Finally, register the control on your page, and display it:

<%@ Register TagPrefix="c" Namespace="My.Controls" %>
<c:OuterControl runat="server" />
link|flag

Your Answer

Get an OpenID
or

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