日期:2011-04-23  浏览次数:20433 次

using System; 

using System.IO; 

using System.Text; 

using System.Text.RegularExpressions; 

using System.Web; 

  

namespace CodeHTML 



  public class TranslateCode 

  { 

    private class ProgrammingLanguage 

    { 

      public const string VB = "vb"; 

  

      public const string CSharp = "c#"; 

  

      public const string JSharp = "js"; 

  

    } 

  

  

    private bool _ShowFileName; 

  

    private int _FontSize; 

  

    private string _Language; 

  

    private const string TAG_FNTRED = "<font color=\"red\">"; 

  

    private const string TAG_FNTBLUE = "<font color=\"blue\">"; 

  

    private const string TAG_FNTGRN = "<font color=\"green\">"; 

  

    private const string TAG_FNTMRN = "<font color=\"maroon\">"; 

  

    private const string TAG_EFONT = "</font>"; 

  

  

    public bool ShowFileName 

    { 

      get 

      { 

        return _ShowFileName; 

      } 

  

      set 

      { 

        _ShowFileName = value; 

      } 

    } 

  

    public int FontSize 

    { 

      get 

      { 

        return _FontSize; 

      } 

  

      set 

      { 

        _FontSize = value; 

      } 

    } 

  

    public string Language 

    { 

      get 

      { 

        return _Language; 

      } 

  

      set