Network C#

/****************** Copyright Notice *****************
 
This code is licensed under Microsoft Public License (Ms-PL). 
You are free to use, modify and distribute any portion of this code. 
The only requirement to do that, you need to keep the developer name, as provided below to recognize and encourage original work:
   
Architecture Designed and Implemented By:
Mohammad Ashraful Alam
Microsoft Most Valuable Professional, ASP.NET 2007 ? 2011
Twitter: http://twitter.com/AshrafulAlam | Blog: http://blog.ashraful.net | Portfolio: http://www.ashraful.net
   
*******************************************************/
namespace Eisk.Helpers
{
    using System;
    /// 
  /// This class is used to provide pre-defined html formats and texts that are required to implement on simple mail and print functionalities.
  /// 

  public class HtmlUtilities
  {
    /// 
    /// Initializes a new instance of the  class.
    /// 

        public HtmlUtilities()
    {
      sb = new System.Text.StringBuilder();
    }
    
    #region Data
    
    System.Text.StringBuilder sb;
    
    const string tableStartText = "";
    const string tableEndText = "";
    
    /// 
    /// Gets the formatted HTML text.
    /// 

    /// The formatted HTML text.
    public string FormattedHtmlText
    {
      get
      {
        sb.Insert(0, tableStartText);
        sb.Append(tableEndText);
        return sb.ToString();
      }
    }
    
    #endregion
        
    #region Predefined Text Size Area
    /// 
    /// Formats to a html row with the text with 4 size text
    /// 

    /// The text.
    public void AppendHeader (string text)
    {
      FormatToRow(text, 4, true); 
    }
    
    /// 
    /// Formats to a html row with the text with 3 size text
    /// 

    /// The text.
    public void AppendSubHeader (string text)
    {
      FormatToRow(text, 3, true); 
    }
    
    /// 
    /// Formats to a html row with the text with 2 size text
    /// 

    /// The text.
    public void AppendPara (string text)
    {
      FormatToRow(text, 2, false);         
    }
    
    /// 
    /// Appends the blank row.
    /// 

    public void AppendBlankRow ()
    {
      FormatToBlankRow();
    }
    
    #endregion
    
    #region Format Area
    /// 
    /// Formats a blank HTML row.
    /// 

    public void FormatToBlankRow()
    {
      sb.Append("   ");    
    }
    /// 
    /// Formats to row.
    /// 

    /// The text.
    public void FormatToRow(string text)
    {
      FormatToRow(text, 2, false);
    }
    /// 
    /// Formats to row.
    /// 

    /// The text.
    /// Size of the font.
    public void FormatToRow(string text, int fontSize)
    {
      FormatToRow(text, fontSize, false);
    }
    /// 
    /// Formats to row.
    /// 

    /// The text.
    /// Size of the font.
    /// if set to true [bold].
    public void FormatToRow(string text, int fontSize, bool bold)
    {
      string boldMarker = ( bold? "bold": "normal");
      string fontFace = "verdana";
      sb.Append("  " + text + " ");
    }
    
    /// 
    /// Formats the provided key/values by separating them thru a colon, and considers the smallest text size '2'.
    /// 

    /// 
    /// 
    public void FormatToRowInColonSeparatedText(string label, string value)
    {
      FormatToRowInColonSeparatedText ( label, value, false);  
    }
    /// 
    /// Formats the provided key/values by separating them thru a colon, and considers the smallest text size '2'.
    /// 

    /// 
    /// 
    /// 
    public void FormatToRowInColonSeparatedText(string label, string value, bool bold)
    {
      label = "" + label + " : ";
      if(bold) value = "" + value + "";
      FormatToRow(label +  " " + value, 2, bold);
    }
    
    #endregion    
    
  }
}