摘要: /*查找XML*/ var filePath = Server.MapPath("~/xml/sample.xml"); XDocument doc = XDocument.Load(filePath); var text1 = doc.Descendants("用户") //定位到节点 .Where(p => p.Element("性别").Value.Contains('男')) ... 阅读全文
posted @ 2016-12-17 17:30 深南大道 阅读(203) 评论(0) 推荐(0)
摘要: using System; using System.Web; using System.Collections; namespace MSCL { /// /// Cache辅助类 /// public class CacheHelper { /// /// 获取数据缓存 /// /... 阅读全文
posted @ 2016-12-17 16:22 深南大道 阅读(200) 评论(0) 推荐(0)
摘要: /* Sqlserver数据库开始相关服务 以下示例显示了如何查看 OLE Automation Procedures 的当前设置。0未启用 */ EXEC sp_configure 'show advanced option', '1' --只有这个高级选项被打开的时候,才有权限修改其他配置。 go RECONFIGURE --运行RECONFIGURE语句进行安装,也就是说,使以上语... 阅读全文
posted @ 2016-12-17 10:04 深南大道 阅读(1559) 评论(0) 推荐(1)