Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3724536
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T06:40:35+00:00 2026-05-19T06:40:35+00:00

I have UserControl that has asp control(<asp:Button runat=server ID=btn />) and I want to

  • 0

I have UserControl that has asp control(<asp:Button runat=”server” ID=”btn” />) and I want to render it.

I tried 1:

            Page loader = new Page();

            Control ctrl = loader.LoadControl("WebUserControl1.ascx");
            loader.Controls.Add(ctrl);
            loader.ProcessRequest(context);

            StringBuilder sb = new StringBuilder();
            StringWriter sw = new StringWriter(sb);
            HtmlTextWriter htw = new HtmlTextWriter(sw);

            loader.RenderControl(htw);

It doesn’t works because it says that each control that has runat=”server” must be in Form.

I also tried 2:

Because loader.Form is null, I create HtmlForm and added the ctrl to it and then added HtmlForm to loader’s Control, BUT it says that it has 2 HtmlForm. So, instead I “injected” HtmlForm to loader like this

            Page loader = new Page();

            HtmlForm form = new HtmlForm();
            var method = loader.GetType().GetMethod("SetForm", BindingFlags.NonPublic | BindingFlags.Instance);
            method.Invoke(loader, new object[] { form });

            Control ctrl = loader.LoadControl("WebUserControl1.ascx");
            loader.Form.Controls.Add(ctrl);
            loader.ProcessRequest(context);

            StringBuilder sb = new StringBuilder();
            StringWriter sw = new StringWriter(sb);
            HtmlTextWriter htw = new HtmlTextWriter(sw);

            loader.RenderControl(htw);

Now no error is occurred, BUT StringWriter is empty

Where is my mistake.
Please don’t tell me to add Page to solution and override OnRender. I want to do it as I mentioned above.

Thank you

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T06:40:36+00:00Added an answer on May 19, 2026 at 6:40 am

    Dont use Form.Controls.Add,

    Add a PlaceHolder control to Form. And add control to PlaceHolder.

    PlaceHolder.Controls.Add(ctrl);

    Try this.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an UserControl that contains a Button : <UserControl> <Button> </UserControl> I want
I have a usercontrol that hides a div when a button is clicked. <asp:LinkButton
I have an ASP.NET Page that contains a User control called ReportCtrl (my own
I have an ASP.NET user control that contains a textbox which has an AJAX
I have an ASP.Net application that has a UserControl that needs to be rendered
I have a UserControl that I want to include in a page multiple times
I have a listview that loads dynamic controls from xml/xslt <asp:ListView ID=DynamicFields runat=server DataSourceID=CustomFields
I have a silverlight control that has a Frame on it. I want to
I have a Page that has a single instance of a UserControl that itself
I have created a user control that has an asp:login control in it. I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.