如题

解决方案 »

  1.   

    数据库中的数据是这样的!<FONT color=#000000>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT face=宋体>XXXXXXXX字符串
      

  2.   

    System.Windows.Forms.WebBrowser 类
      

  3.   

    using System;
    using System.Windows.Forms;class Test : Form
    {
      Test()
      {
        WebBrowser w   = new WebBrowser();
        w.Parent       = this;
        w.Dock         = DockStyle.Fill;
        w.DocumentText =
          "<html><body>Please enter your name:<br/>" +
          "<input type='text' name='userName'/><br/>" +
          "<a href='http://www.microsoft.com'>continue</a>" +
          "</body></html>";
      }  [STAThread]
      static void Main()
      {
        Application.Run(new Test());
      }
    }
      

  4.   

    感谢空军,有个问题!!System.Windows.Forms.WebBrowser这个WebBrowser点不出来啊??在哪里加载呢??
      

  5.   


    差了句话this.Controls.Add(w);
      

  6.   

    WebBrowser, need add reference axhost
      

  7.   

    引用System.web.dll,使用System.Web.HttpUtility.HtmlDecode