摘要: http://www.cnblogs.com/lixyvip/archive/2009/09/16/1567929.htmlusing System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Xml;namespace WebApplication2{ /// /// XMLHelper XML文档操作管理器 /// public class XMLHelper { public XMLHelper() { ... 阅读全文
posted @ 2014-02-26 18:13 醉意人间 阅读(396) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/hellowjwang/article/details/19975635public class HttpPost { /// /// 以Post 形式提交数据到 uri /// /// /// /// /// public static byte[] Post(Uri uri, IEnumerable files, NameValueCollection values) { string... 阅读全文
posted @ 2014-02-26 18:09 醉意人间 阅读(411) 评论(0) 推荐(0) 编辑
摘要: 转:http://blog.csdn.net/smartsmile2012/article/details/8682295#region 获取cpu序列号 硬盘ID 网卡硬地址 /**/ /// /// 获取cpu序列号 /// /// string public static string GetCpuInfo() { string cpuInfo = ""; ManagementClass cimobject = new M... 阅读全文
posted @ 2014-02-26 17:54 醉意人间 阅读(429) 评论(0) 推荐(0) 编辑
摘要: 使用前要导入SQLDMO.dll(在com组件中导入Microsoft SQLDMO Object Library即可) /// /// DbOper类,主要应用SQLDMO实现对Microsoft SQL Server数据库的备份和恢复 /// public sealed class DbOper { /// /// DbOper类的构造函数 /// public DbOper() { } /// /// 数据库备份 /// ... 阅读全文
posted @ 2014-02-26 17:47 醉意人间 阅读(360) 评论(0) 推荐(0) 编辑