摘要: 解决方法:具体操作: 打开 开始-程序-Microsoft Visual Studiio 208-Visual Studio Tools-Visual Studio 2008 命令提示 录入devenv /resetskippkgs执行即OK 阅读全文
posted @ 2012-12-11 18:46 shuangyihaiying 阅读(574) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.ComponentModel; using System.Collections;using System.Diagnostics;using System.Windows.Forms;using System.Drawing;using System.Drawing.Drawing2D;namespace Project{ [ToolboxItem(true)] public partial... 阅读全文
posted @ 2012-12-11 11:44 shuangyihaiying 阅读(3693) 评论(0) 推荐(0) 编辑
摘要: public string NoHtml(string html) { string StrNohtml = System.Text.RegularExpressions.Regex.Replace(html, "<[^>]+>", ""); StrNohtml = System.Text.RegularExpressions.Regex.Replace(StrNohtml, "&[^;]+;", ""); return StrNohtml; } 阅读全文
posted @ 2012-12-11 11:39 shuangyihaiying 阅读(187) 评论(0) 推荐(0) 编辑