上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 22 下一页
摘要: /*消息提示begin*/jQuery.Info = function (msg) { $.messager.alert("温馨提示", msg, "info");};jQuery.Error = function (msg) { $.messager.alert("错误", msg, "error 阅读全文
posted @ 2017-08-21 17:29 恋之呓 阅读(234) 评论(0) 推荐(0) 编辑
摘要: parseFloat(value).toFixed(2); 阅读全文
posted @ 2017-08-21 17:28 恋之呓 阅读(122) 评论(0) 推荐(0) 编辑
摘要: function RetainedDecimalPlaces(num, del, spit) {//num :值 del:小数位 spit:是否使用千分位符 if (del != 0) { num = parseFloat(num).toFixed(del); //保留小数并四舍五入 } var s 阅读全文
posted @ 2017-08-21 17:23 恋之呓 阅读(423) 评论(0) 推荐(0) 编辑
摘要: public static void writeLog(string strContent) { string strPath = "c:\\importorderlog"; string strFileName = DateTime.Now.ToString("yyyyMMdd") + ".txt 阅读全文
posted @ 2017-08-17 21:56 恋之呓 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 创建链接服务器 exec sp_addlinkedserver 'ITSV ', ' ', 'SQLOLEDB ', '远程服务器名或ip地址 ' exec sp_addlinkedsrvlogin 'ITSV ', 'false ',null, '用户名 ', '密码 ' --查询示例 selec 阅读全文
posted @ 2017-08-07 14:39 恋之呓 阅读(201) 评论(0) 推荐(0) 编辑
摘要: public string Post(ModelCs mod) { string formData = Newtonsoft.Json.JsonConvert.SerializeObject(mod); byte[] postData = Encoding.UTF8.GetBytes(formDat 阅读全文
posted @ 2017-06-22 16:25 恋之呓 阅读(4113) 评论(0) 推荐(0) 编辑
摘要: 第一种,使用MimeMapping 使用.NET提供的现有方法是最简单的,但是需要.NET Framework 4.5及以后的支持。MimeMapping在System.Web命名空间下。 1 2 3 string fileName = "nmtree.png"; var contentType = 阅读全文
posted @ 2017-06-07 13:25 恋之呓 阅读(385) 评论(0) 推荐(0) 编辑
摘要: select * into #t from OPENROWSET( 'SQLOLEDB','SERVER=192.168.90.18;uid=sa;pwd=Mm-000000;Database=tms', 'SET FMTONLY OFF;set nocount on;exec Sys_Index_ 阅读全文
posted @ 2017-05-12 13:15 恋之呓 阅读(1208) 评论(0) 推荐(0) 编辑
摘要: 1.生成客户端的私钥,客户端的证书 1)keytool -genkey -alias clientkey -keystore kclient.keystore -validity 36500 2)keytool -export -alias clientkey -keystore kclient.k 阅读全文
posted @ 2017-04-27 15:08 恋之呓 阅读(237) 评论(0) 推荐(0) 编辑
摘要: USE [tms]GO/****** Object: UserDefinedFunction [dbo].[fn_StrToTable_Double] Script Date: 2017/4/26 9:07:38 ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTI 阅读全文
posted @ 2017-04-26 09:08 恋之呓 阅读(313) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 22 下一页