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 1057197
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T17:49:45+00:00 2026-05-16T17:49:45+00:00

I have made an ASP.NET table which on runtime gets populated with labels, literals,

  • 0

I have made an ASP.NET table which on runtime gets populated with labels, literals, data, formatting etc.

form1.innerhtml says page does not have literals only.

I need to extract this ASP.NET table generated at runtime as HTML code so that it can be exported to a Word file..(as Word easily supports HTML) and the browser is also displaying HTML.

So how to get the HTML?

  • 1 1 Answer
  • 1 View
  • 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-16T17:49:46+00:00Added an answer on May 16, 2026 at 5:49 pm

    You can render the control into a string.

    public string RenderControl(Control ctrl) 
    {
        StringBuilder sb = new StringBuilder();
        StringWriter tw = new StringWriter(sb);
        HtmlTextWriter hw = new HtmlTextWriter(tw);
    
        ctrl.RenderControl(hw);
        return sb.ToString();
    }
    

    Edited: Here is a complete .aspx page. All I did is create a new website, put the following code in and hit F5.

    using System;
    using System.IO;
    using System.Text;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    
    public partial class _Default : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            Label lbl = new Label();
            lbl.Text = "This is sample text";
            lbl.ForeColor = System.Drawing.Color.Red;
            string html = RenderControl(lbl);
            Response.Clear();
            Response.Write(HttpUtility.HtmlEncode(html));
            Response.End();
        }
        public string RenderControl(Control ctrl)
        {
            StringBuilder sb = new StringBuilder();
            StringWriter tw = new StringWriter(sb);
            HtmlTextWriter hw = new HtmlTextWriter(tw);
    
            ctrl.RenderControl(hw);
            return sb.ToString();
        }
    }
    

    The output is
    <span style="color:Red;">This is sample text</span>
    which the browser displays as <span style="color:Red;">This is sample text</span>.

    Note that you could also eliminate the StringBuilder, use new StringWriter(); and return tw.ToString();. StringWriter uses a StringBuilder as its underlying data structure anyway.

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

Sidebar

Related Questions

I have made an application in asp.net which sends and receive sms, it works
We have several ASP.NET applications that use a sitemap which is populated via a
I have made a user control in asp.net c#. Becuase of some data I
I have a bunch of nested ASP.net repeaters, which each generate table structures when
I have made asp.net webservice in C# to send mail on given mailid as
I have made the database using ASP.Net Configuration(aspnet_regsql.exe tool) . I want to use
I have made a textbox with an autocomplete in ASP.NET MVC 4, Javascript and
I have to migrate a web application I made with ASP.NET MVC to a
In VS 2010, I have an asp.net web application project. I made a change
I'm working on an asp.net-mvc project. I have an Items table and a Tags

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.