Click here to Skip to main content
15,881,380 members
Articles / Web Development / ASP.NET
Article

A Simple HTML Builder Utility Class

Rate me:
Please Sign up or sign in to vote.
3.52/5 (34 votes)
19 Mar 20062 min read 77.5K   1K   26   16
When your application requirements for html formatting of texts (example: print page, e-mail text etc) are pretty simple, this simple builder class will save your development time.

Sample Image - HTML_Build_Clss.png

Introduction

<o:p> 

When you develop a web based application, you need some texts to be converted to HTML tags for a convenient format. This is required especially when you have to send e-mail or show text in 'Print' page. Definitely there are lots of utility classes and tools are available in web. But fortunately some of my application requirements regarding HTML text were very simple and unfortunately I didn't find anything in the web to get a simple HTML builder utility to format my simple texts. However, as usual I decided to write an utility class, which is very simple to use.

<o:p> 

Using the class

<o:p> 

Let's look at the sample codes that use our Simplified HTML Builder Class.

public static void UseThis()
{
Ashraf.HTMLUtil util = new Ashraf.HTMLUtil();

util.AppendHeader("Header");
util.AppendSubHeader("Sub Header");
util.AppendPara("Hello this is a para");
util.AppendPara("Hello this is the second para");
util.AppendBlankRow();
util.FormatToRowInColonSeparatedText("Label 1","Value 1", false);
util.FormatToRowInColonSeparatedText("Label 2","Value 2", false);
util.AppendBlankRow();
util.AppendPara("Hello this is footer para");
util.AppendSubHeader("Sub Footer");
util.AppendHeader("Footer");

System.Web.HttpContext.Current.Response.Write(util.FormattedHTMLText);
}

 

At first you have to create an instance of "HTMLUtil" class. After then using different methods you can add your contents into this instance. Internally a System.Text.StringBuilder class instance is the container of all of the contents in the corresponding format. The utility class methods wrap all of contents to an html table so that the contents can easily be placed anywhere. Using the "HTMLUtil" instance you can add header, sub-header, normal texts, blank rows etc.

util.AppendHeader("Header");
util.AppendSubHeader("Sub Header");
util.AppendPara("Hello this is a para");
util.AppendBlankRow();

 

However as you see in the code, there is a method named "FormatToRowInColonSeparatedText". This method appends colon separated row in the System.Text.StringBuilder container along with the passed parameters as caption and value. This is useful when you want to format html for database table fields.

<o:p> 

util.FormatToRowInColonSeparatedText("Label 1","Value 1", false);

<o:p> 

<o:p> 

When you finish your texts to be built in desired formatting, you are ready to use that. You will get all the texts in proper formatted thru the "FormattedHTMLText" property of the class.

<o:p> 

System.Web.HttpContext.Current.Response.Write(util.FormattedHTMLText);

<o:p> 

However, you can define the size of the fonts of header, sub-header, normal text and the font face for the builder class by the following properties.

 

public int HeaderTextSize{get;set;} //default size is 4 
public int SubHeaderTextSize{get;set;} //default size is 3 
public int NormalTextSize{get;set;} //default size is 2 
public string FontFace{get;set;} // default is "verdana"

 

Conclusion:

<o:p> 

Any advice or correction for this class will be highly appreciated.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Chief Technology Officer
Bangladesh Bangladesh
Mohammad Ashraful Alam is a Software Engineer, who is dedicated to Microsoft .NET based development. This Bangladeshi national is involved with project management and development of several US based software projects from his country. Already he has managed and developed 15 software projects, which are being used by several users of different countries, such as USA, Canada, Australia, and Bangladesh. While developing and managing a team, he contains and maintains a set of well defined engineering practices developed by him and other online developer community. Beside software development, he has also written several technical articles and research papers published by IEEE Computer Society and many other worlds recognized publishers.

Before becoming engaged with software development, he was involved with Bengali literature and several Bengali news papers as freelance journalist and published around 150 articles, essays and short stories.

Due to his willingness to give effort to improve and share better software development practices, Ashraf has awarded as “Most Valuable Professional” (MVP) in ASP.NET category by Microsoft for multiple times, since 2007.

When not engaged with technical stuffs, he likes to pass time with his friends, and family members, listens music or watches TV.

Check his portfolio at: http://www.ashraful.net/.

Check his blog: http://blog.ashraful.net/.

Catch him thru mail: admin [attt] ashraful [dotttt] net (anti-spam text).

Comments and Discussions

 
GeneralThe codes could be more decent Pin
Moim Hossain28-Nov-08 10:11
Moim Hossain28-Nov-08 10:11 
QuestionWhy? Pin
George L. Jackson19-Mar-06 5:20
George L. Jackson19-Mar-06 5:20 
AnswerRe: Why? Pin
Mohammad Ashraful Alam19-Mar-06 20:33
Mohammad Ashraful Alam19-Mar-06 20:33 
AnswerRe: Why? Pin
tomstrummer20-Mar-06 6:35
tomstrummer20-Mar-06 6:35 
GeneralRe: Why? Pin
Mohammad Ashraful Alam20-Mar-06 8:30
Mohammad Ashraful Alam20-Mar-06 8:30 
GeneralRe: Why? Pin
Mohammad Ashraful Alam20-Mar-06 8:32
Mohammad Ashraful Alam20-Mar-06 8:32 
GeneralRe: Why? Pin
George L. Jackson20-Mar-06 12:59
George L. Jackson20-Mar-06 12:59 
GeneralRe: Why? Pin
Mohammad Ashraful Alam20-Mar-06 20:42
Mohammad Ashraful Alam20-Mar-06 20:42 
GeneralRe: Why? Pin
George L. Jackson21-Mar-06 0:27
George L. Jackson21-Mar-06 0:27 
GeneralRe: Why? Pin
James Curran28-Mar-06 5:01
James Curran28-Mar-06 5:01 
GeneralRe: Why? Pin
Mohammad Ashraful Alam28-Mar-06 20:22
Mohammad Ashraful Alam28-Mar-06 20:22 
AnswerRe: Why? Pin
Sean Stapleton27-Mar-06 10:24
Sean Stapleton27-Mar-06 10:24 
AnswerRe: Why? Pin
sdfgasdfsfgsdfg29-Mar-06 5:46
sdfgasdfsfgsdfg29-Mar-06 5:46 
GeneralRe: Why? Pin
Mohammad Ashraful Alam29-Mar-06 7:12
Mohammad Ashraful Alam29-Mar-06 7:12 
GeneralRe: Why? Pin
Ashaman31-Mar-06 2:00
Ashaman31-Mar-06 2:00 
GeneralThanks for feedback Pin
Mohammad Ashraful Alam31-Mar-06 2:59
Mohammad Ashraful Alam31-Mar-06 2:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.