Click here to Skip to main content
6,596,602 members and growing! (19,315 online)
Email Password   helpLost your password?
Web Development » ASP.NET » General     Beginner

A Simple HTML Builder Utility Class

By Mohammad Ashraful Alam

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.
C#, Windows, .NET 1.1, ASP.NET, VS.NET2003, Dev
Posted:19 Mar 2006
Views:37,643
Bookmarked:18 times
Unedited contribution
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
32 votes for this article.
Popularity: 5.20 Rating: 3.45 out of 5
5 votes, 15.6%
1
1 vote, 3.1%
2
1 vote, 3.1%
3

4
25 votes, 78.1%
5

Sample Image - HTML_Build_Clss.png

Introduction

 

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.

 

Using the class

 

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.

 

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

 

 

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.

 

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

 

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:

 

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

About the Author

Mohammad Ashraful Alam


Member
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).
Occupation: Chief Technology Officer
Location: Bangladesh Bangladesh

Other popular ASP.NET articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 16 of 16 (Total in Forum: 16) (Refresh)FirstPrevNext
GeneralThe codes could be more decent PinmemberMoim Hossain11:11 28 Nov '08  
GeneralWhy? PinmemberGeorge L. Jackson6:20 19 Mar '06  
GeneralRe: Why? PinmemberMohammad Ashraful Alam21:33 19 Mar '06  
GeneralRe: Why? Pinmembertomstrummer7:35 20 Mar '06  
GeneralRe: Why? PinmemberMohammad Ashraful Alam9:30 20 Mar '06  
GeneralRe: Why? PinmemberMohammad Ashraful Alam9:32 20 Mar '06  
GeneralRe: Why? PinmemberGeorge L. Jackson13:59 20 Mar '06  
GeneralRe: Why? PinmemberMohammad Ashraful Alam21:42 20 Mar '06  
GeneralRe: Why? PinmemberGeorge L. Jackson1:27 21 Mar '06  
GeneralRe: Why? PinmemberJames Curran6:01 28 Mar '06  
GeneralRe: Why? PinmemberMohammad Ashraful Alam21:22 28 Mar '06  
GeneralRe: Why? PinmemberSean Stapleton11:24 27 Mar '06  
GeneralRe: Why? Pinmembersdfgasdfsfgsdfg6:46 29 Mar '06  
GeneralRe: Why? PinmemberMohammad Ashraful Alam8:12 29 Mar '06  
GeneralRe: Why? PinmemberAshaman3:00 31 Mar '06  
GeneralThanks for feedback PinmemberMohammad Ashraful Alam3:59 31 Mar '06  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 19 Mar 2006
Editor:
Copyright 2006 by Mohammad Ashraful Alam
Everything else Copyright © CodeProject, 1999-2009
Web20 | Advertise on the Code Project