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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T06:42:37+00:00 2026-05-11T06:42:37+00:00

I’m writing the RenderContents() method of my ASP.NET server control. The method uses an

  • 0

I’m writing the RenderContents() method of my ASP.NET server control. The method uses an HtmlTextWriter object to render the output content. For the control I’m writing, using the HtmlTextWriter‘s methods seems like it will require a lot of lines of code to open and close every tag and add every attribute to the stream. In the end I feel like I’m going to end up with code that is a lot longer than it needs to be.

I was thinking that if I used a chainable class such as StringBuilder, my code would be a lot cleaner to read and easier to write.

What I was wondering was, is there any reason to use the HtmlTextWriter object to render my entire control’s contents? Other than the safety checks (I’m assuming) it includes to make sure you don’t write tags in the wrong order or create invalid markup, I don’t see a reason.

It seems like it would be easier to just do something like this:

protected override void RenderContents(HtmlTextWriter output) {     StringBuilder s = new StringBuilder();     s.Append('lots')      .Append('of')      .Append('strings');      output.BeginRender();     output.Write(s.ToString());     output.EndRender(); } 

Is there any reason why this would be a bad idea?

Update
In response to Mehrdad Afshari‘s answer:
I didn’t think much about the memory requirements of having a separate StringBuilder object instantiated. What about making a wrapper for HtmlTextWriter so that it can be chained so that an extra string isn’t made.

public class ChainedHtmlTextWriter {     private HtmlTextWriter _W;     public ChainedHtmlTextWriter(HtmlTextWriter writer)     {         _W = writer;     }      public ChainedHtmlTextWriter Write<T>(T value)      {          _W.Write(value);          return this;      }      public ChainedHtmlTextWriter WriteLine<T>(T value)     {         _W.WriteLine(value);         return this;     } } 
  • 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. 2026-05-11T06:42:38+00:00Added an answer on May 11, 2026 at 6:42 am

    I work on an application where the developers followed the horrible path you’re exploring. This harkens back to the days when you had to write your own ISAPI dlls that spit out html code. It is a constant headache to work in. If your code is mostly strings, then something is wrong.

    Most of the code of this type that I change I instantiate server objects, configure their properties as desired, and then tell them to .RenderControl(writer). This makes the code much easier to read and work with. If there is a performance hit from the overhead this brings, I am willing to accept it (in fact, the application generally runs faster after I’ve made my changes, so anecdotally this isn’t the case, but I haven’t profiled my code).

    One simple drawback to hard-coding your stuff in strings is when HTML standards change. The code I work on was written in 04/05, and since then <BR> has become <br /> and uppercase html tags aren’t kosher anymore, etc. If they had been using server controls, those server controls have changed their outputted html without us needing to do anything. This is just one simple example.

    EDIT: Oh, and btw, BeginRender and EndRender don’t have any implementation. They are placeholders for you to override and provide custom functionality in a HtmlTextWriter-derived class.

    EDIT2: Sometimes it’s a bit onerous to always use server controls, like for containers and stuff. I’d be doing lots of .Controls.Add() and then render the container later. So sometimes I do this:

    writer.AddAttribute(HtmlTextWriterAttribute.Class, 'myContainerClass'); writer.RenderBeginTag(HtmlTextWriterTag.Div); // do some stuff, .RenderControl on some other controls, etc. writer.RenderEndTag(); 

    As mentioned, this will render correct html even if the html of a div changes in the future, cause I don’t have any hard-coded strings.

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

Sidebar

Related Questions

link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I am reading a book about Javascript and jQuery and using one of the
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and
I am trying to render a haml file in a javascript response like so:
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
We're building an app, our first using Rails 3, and we're having to build
We are using XSLT to translate a RIXML file to XML. Our RIXML contains
i got an object with contents of html markup in it, for example: string

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.