摘要: 问题现象:从数据库读取DateTime类型的数据进行JSON序列化后变为/Date(XXXX……)这样的数据。 数据库版本:SQL Server 2012 解决方法: 在查询语句中通过 CONVERT(char,[字段名],120) 进行转换。 阅读全文
posted @ 2020-12-21 17:08 来瓶冰镇可乐吧 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 字符串格式:一级部门>>二级部门>>三级部门 参数说明:@STR:要处理的字符串; @Input:要取的结果字符串在源字符串的第几层级,如:要取二级部门,则@Input=2 函数: CREATE FUNCTION fn_COMMON_SubDept(@STR NVARCHAR(500),@Input 阅读全文
posted @ 2020-11-26 09:19 来瓶冰镇可乐吧 阅读(153) 评论(0) 推荐(0) 编辑
摘要: context.Response.End();将当前所有缓冲的输出发送到客户端,停止该页的执行,并引发System.Web.HttpApplication.EndRequest事件。 使用context.Response.End(); 会引发“System.Threading.ThreadAbort 阅读全文
posted @ 2020-09-23 18:47 来瓶冰镇可乐吧 阅读(953) 评论(0) 推荐(0) 编辑
摘要: 添加Cache 1 HttpRuntime.Cache.Add(CacheKey, pathList, null, DateTime.Now.AddMinutes(10), TimeSpan.Zero, System.Web.Caching.CacheItemPriority.Default, nu 阅读全文
posted @ 2020-09-23 18:22 来瓶冰镇可乐吧 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 1 function guid() { 2 return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) { 3 var r = Math.random() * 16 | 0, 4 v = c == 'x' ? 阅读全文
posted @ 2020-09-23 18:13 来瓶冰镇可乐吧 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 问题描述:在SSMS中连接其他服务器的SQL Server时报错“目标主体名称名称不正确,无法生成SSPI上下文(Microsoft SQL Server)” 在cmd中Ping 机器名 可以Ping通,通过ip也可以连接。 解决方案: 在cmd中输入以下指令: setspn -D MSSQLSvc 阅读全文
posted @ 2020-08-26 14:34 来瓶冰镇可乐吧 阅读(1391) 评论(0) 推荐(0) 编辑
摘要: 打开cmd,输入cd C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer 输入 witadm 阅读全文
posted @ 2020-07-02 15:49 来瓶冰镇可乐吧 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 打开cmd,定位到witadmin.exe所在的文件夹。 使用指令:witadmin changefield /collection:服务器地址/团队项目集合名称 /n:refname属性的值 /name:"新字段名",如:witadmin changefield /collection:http: 阅读全文
posted @ 2020-06-29 12:53 来瓶冰镇可乐吧 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 打开cmd,定位到TF.exe所在的文件夹。如:C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explo 阅读全文
posted @ 2020-06-29 11:23 来瓶冰镇可乐吧 阅读(354) 评论(0) 推荐(0) 编辑
摘要: 使用<SUGGESTEDVALUES></SUGGESTEDVALUES>标签包裹下拉框的值。 如: <FIELD name="检测于版本" refname="BJUCI.Bug.ProcjectVersion" type="String" reportable="dimension"> <SUGG 阅读全文
posted @ 2020-06-24 10:55 来瓶冰镇可乐吧 阅读(123) 评论(0) 推荐(0) 编辑