摘要:
nuget (一定是看好了,是WebApi2) Install-Package Autofac.WebApi2 -Version 3.4.0 Application_Start //Autofac var builder = new ContainerBuilder(); // Get your H 阅读全文
摘要:
不知道为什么,Window Server 时间没有同步,导致 RequestVerificationToke 验证不通过。 原来是 IIS Web 服务器的时间未同步,导致。 谢谢 阅读全文
摘要:
##JDK 也可参考 http://my.oschina.net/topeagle/blog/484363 wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-coo 阅读全文
摘要:
确保elasticsearch version 2.x 苦逼的等了几年 POST http://localhost:9200/_reindex { "source": { "index": "index_test_001" }, "dest": { "index": "new_index_test_ 阅读全文
摘要:
LEN : 1、长度不计算后空格,则计算前空格的长度 2、Unicode 格式不强制计算为双字节,即:select N'ss' //2 DATALENGTH: 1、长度计算前后空格 2、Unicode 格式强制计算为双字节(包括空格也会计算为2个字节),即:select N'ss' //4 阅读全文
摘要:
只需要在web.config的 system.webServer 添加一下代码即可 <httpProtocol> <customHeaders> <add name="Access-Control-Allow-Origin" value="*" /> <add name="Access-Contro 阅读全文
摘要:
In Global.asax add the line Application_Start() class: GlobalConfiguration.Configuration.Formatters.XmlFormatter.SupportedMediaTypes.Clear(); In the W 阅读全文
摘要:
错误信息:未在本地计算机上注册“microsoft.ACE.oledb.12.0”提供程序。 解决办法: 立即下载。然后安装就行了。 阅读全文
摘要:
1.应尽量避免在 where 子句中使用!=或<>操作符,否则将引擎放弃使用索引而进行全表扫描。 2.对查询进行优化,应尽量避免全表扫描,首先应考虑在 where 及 order by 涉及的列上建立索引。 3.应尽量避免在 where 子句中对字段进行 null 值判断,否则将导致引擎放弃使用索引 阅读全文
摘要:
验证任何一个字符串是否包含QQ号码。 规则: 连续数据,大于4位的,就任何是。 返回值:string //12345,543210,5485654 public static string IgetNumber(string strQq) { var result = string.Empty; c 阅读全文