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

  • Home
  • SEARCH
  • 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
  • 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-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

We have several ASP.NET applications that use a sitemap which is populated via a
I have a ASP.net 2.0 app and I have made some changes the the
Please see the below code: I am have a table row defined using asp.net
I have made a user signup form in asp.net. I want to check the
I have made some code which exports some details of a journal article to
I have made a custom UserControl i Vb.net (windows application). How can I add
I have made a new windows service which works fine using barebone code (just
So I have made a webservice that interfaces with a set of data contained
So I'm using ASP.NET with C#. And I have an item that is queried
I've been making my first ASP.NET Visual Studio website and I have just started

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.