摘要:
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Security.Cryptography; using System 阅读全文
摘要:
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Security.Cryptography; using System 阅读全文
摘要:
RSA公钥加密算法是1977年由Ron Rivest、Adi Shamirh和LenAdleman在(美国麻省理工学院)开发的。RSA取名来自开发他们三者的名字。RSA是目前最有影响力的公钥加密算法,它能够抵抗到目前为止已知的所有密码攻击,已被ISO推荐为公钥数据加密标准。RSA算法基于一个十分简单 阅读全文
摘要:
alter table T_LoanItem alter column [Description] nvarchar(3000) 阅读全文
摘要:
SELECT distinct u.Name as UserName, a.OrderId, ( select d.SignCity from T_OperaterInfo o left join T_DepartmentInfo d on o.DepId=d.DepId where o.OptId 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Web;using Models;using System.Web.SessionState;using System.Web.UI.WebCon 阅读全文
摘要:
/// <summary> /// 传输方法 /// </summary> /// <param name="url">接口地址</param> /// <param name="ms">序列化后的数据</param> /// <returns></returns> public static JO 阅读全文
摘要:
when 'ChangeProductName'= case --联名借姓名 --when a.ChangeProductName is not null then (substring(a.ChangeProductName,0,charindex(',', ChangeProductName)) 阅读全文
摘要:
截取sql 第一次出现字符之前的数据 (select left( a.ChangeProductName,charindex(',', ChangeProductName)-1)) as ChangeProductName , 阅读全文
摘要:
WCF、WebAPI、WCFREST、WebService之间的区别 注明:转载在.net平台下,有大量的技术让你创建一个HTTP服务,像Web Service,WCF,现在又出了Web API。在.net平台下,你有很多的选择来构建一个HTTP Services。我分享一下我对Web Servic 阅读全文
摘要:
常见经典排序算法 1.希尔排序 2.二分插入法 3.直接插入法 4.带哨兵的直接排序法 5.冒泡排序 6.选择排序 7.快速排序 8.堆排序 一.希尔(Shell)排序法(又称宿小增量排序,是1959年由D.L.Shell提出来的) /* Shell 排序法 */ #include <stdio.h 阅读全文
|