可可果

哈利是一只有白点的黑狗

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
 protected void Button1_Click(object sender, EventArgs e)
    {
        TextBox2.Text 
= HtmlEncode(TextBox1.Text);

    }
    
public string HtmlEncode(string theString)
    {
        theString 
= theString.Replace(">"">");
        theString 
= theString.Replace("&lt;""<");
        theString 
= theString.Replace("&nbsp;"" ");
        theString 
= theString.Replace("&nbsp;"" ");
        theString 
= theString.Replace("&quot;""\"");
        theString = theString.Replace("'""\'");
        theString 
= theString.Replace("<br/>   ""\n");
        
return theString;
    }
posted on 2007-10-17 17:03  可可果  阅读(577)  评论(0编辑  收藏  举报