上一页 1 2 3 4 5 6 ··· 32 下一页
摘要: //2007年4月24日 this.TextBox6.Text = System.DateTime.Now.ToString("D"); //2007-4-24 this.TextBox7.Text = System.DateTime.Now.ToString("d"); //2007年4月24日 阅读全文
posted @ 2017-10-17 23:34 914556495 阅读(1033) 评论(0) 推荐(0) 编辑
摘要: select calme from PFtestn group by calme having count(1)>=2 关键 count(1)>=2 阅读全文
posted @ 2017-10-17 12:10 914556495 阅读(1183) 评论(0) 推荐(0) 编辑
摘要: 直接上代码: 确保json是可访问的 http://localhost:54843/dist/appsettings.json文件 { "Logging": { "IncludeScopes": false, "LogLevel": { "Default": "Debug", "System": " 阅读全文
posted @ 2017-09-13 22:56 914556495 阅读(1192) 评论(0) 推荐(0) 编辑
摘要: --/第1步**********删除所有表的外键约束*************************/ DECLARE c1 cursor for select 'alter table ['+ object_name(parent_obj) + '] drop constraint ['+name+']; ' from sysobjects where xtype = 'F' open... 阅读全文
posted @ 2017-08-21 21:53 914556495 阅读(909) 评论(0) 推荐(1) 编辑
摘要: 解决方案: 以管理员权限打开命令提示符输入bcdedit /set hypervisorlaunchtype Auto重启计算机 bcdedit /set hypervisorlaunchtype off (禁止hyper-v) 阅读全文
posted @ 2017-08-05 16:11 914556495 阅读(2692) 评论(1) 推荐(1) 编辑
摘要: 除了以上方法还可以通过在部署Web API的网站中,移除掉WebDav模块即可: 阅读全文
posted @ 2017-08-02 17:59 914556495 阅读(589) 评论(0) 推荐(0) 编辑
摘要: 第一步 第二步 第三部 阅读全文
posted @ 2017-08-01 17:34 914556495 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 开启 cmd bcdedit /set hypervisorlaunchtype Auto 关闭使用android执行 1.以管理员身份运行命令行窗口 2.执行C:\Windows\system32> bcdedit /set hypervisorlaunchtype off 3.重启电脑 阅读全文
posted @ 2017-07-25 09:24 914556495 阅读(253) 评论(0) 推荐(0) 编辑
摘要: IList<string> mList = new List<string>(); mList.Add("2222"); mList.Add("zxc"); foreach (string s in mList) { Console.WriteLine(s); } 阅读全文
posted @ 2017-07-24 11:37 914556495 阅读(7686) 评论(1) 推荐(0) 编辑
摘要: private void Form1_Load(object sender, EventArgs e) { SetAutoBootStatu(true); } /// /// 在注册表中添加、删除开机自启动键值 /// public static in... 阅读全文
posted @ 2017-07-22 11:33 914556495 阅读(847) 评论(1) 推荐(0) 编辑
摘要: SELECT *,COUNT(1) OVER() AS TotalItemCountFROM Positions WHERE 1=1 ORDER BY id DESCOFFSET 1 ROW FETCH NEXT 5 ROWS ONLY 阅读全文
posted @ 2017-07-18 18:40 914556495 阅读(3745) 评论(0) 推荐(0) 编辑
摘要: this.context.Database.ExecuteSqlCommand("select * from View_Permission"); 阅读全文
posted @ 2017-07-13 18:13 914556495 阅读(95) 评论(0) 推荐(0) 编辑
摘要: SHA1加密 public static string EncryptSHA1(string input, string salt) { // 将密码和salt值转换成字节形式并连接起来 byte[] bytes = Encoding.Unicode.GetBytes(input); byte[] 阅读全文
posted @ 2017-07-13 16:43 914556495 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-07-04 10:30 914556495 阅读(87) 评论(0) 推荐(0) 编辑
摘要: select * from Pub_sssEmpxx where (Code like'%100%') or (DID like'%"100011"%') or ([Eame] like'%" & zipcode_key & "%') order by ode 阅读全文
posted @ 2017-07-03 15:22 914556495 阅读(1964) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 32 下一页