摘要:
// 除去所有在html元素中标记using System.Text.RegularExpressions; public static string striphtml(string strhtml) { string stroutput = strhtml; Regex regex = new Regex(@"<[^>]+>|</[^>]+>"); stro... 阅读全文
innhyulBetween tomorrow's dream and yesterday's regret is todays opportunity. |
摘要:
// 除去所有在html元素中标记using System.Text.RegularExpressions; public static string striphtml(string strhtml) { string stroutput = strhtml; Regex regex = new Regex(@"<[^>]+>|</[^>]+>"); stro... 阅读全文
摘要:
摘自:http://hi.baidu.com/ldy201001/blog/item/22e15edef479ae5295ee37c9.html在上传文件时经常要判断文件夹是否存在,如果存在就上传文件,否则新建文件夹再上传文件判断语句为if (System.IO.Directory.Exists(Server.MapPath("file")) == false)//如果不存在就创建file文件夹 ... 阅读全文
|