摘要:
class Program { static string regionId = "cn-shanghai"; static string accessKeyId = "accessKeyId"; static string accessKeySecret = "accessKeySecret"; static void Main(... 阅读全文
摘要:
Document 提交2 /// /// 文件合并 /// /// 文件列表 /// 存放路径 public static void FileMerge(List... 阅读全文
摘要:
/// /// 视频合并 /// /// 第一个视频地址 /// 第二个视频地址 /// 合成后存放路径 /// static string Combine(string File1, string File2, string DstFile) {... 阅读全文
摘要:
安装NuGet包 HtmlAgilityPack var wc = new WebClient(); wc.Encoding = Encoding.GetEncoding("UTF-8"); //转格式 var html = wc.DownloadString(url); //获取内容 HtmlDo 阅读全文
摘要:
//设置登录cookie setCookie(name,value){ var Days=30; var exp=new Date(); var date=Math.round(exp.getTime()/1000)+Days*24*60*60; const cookie = { url: this.... 阅读全文
摘要:
--开启Sql Server 通讯配置-- sp_configure 'show advanced options', 1; GO RECONFIGURE; GO sp_configure 'Ole Automation Procedures', 1; GO RECONFIGURE; GO EXEC sp_configure 'Ole Automation Procedures'; GO --... 阅读全文
摘要:
sql server设置:ALTER DATABASE <DatabaseName> SET ENABLE_BROKER;语句让相应的数据库启用监听服务,以便支持SqlDependency特性 阅读全文
摘要:
1.主键约束: 要对一个列加主键约束的话,这列就必须要满足的条件就是非空 因为主键约束:就是对一个列进行了约束,约束为(非空、不重复) 以下是代码 要对一个列加主键,列名为id,表名为emp 格式为: alter table 表格名称 add constraint 约束名称 增加的约束类型 (列名) 阅读全文
摘要:
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Drawing.Text; using System.Drawing.Drawing2D; usi... 阅读全文
摘要:
1、使用性能测试工具dotTrace 3.0,它能够计算出你程序中那些代码占用内存较多 2、强制垃圾回收3、多dispose,close4、用timer,每几秒钟调用:SetProcessWorkingSetSize(Process.GetCurrentProcess().Handle, -1, - 阅读全文