摘要:
USE [LH]--数据库名称GOSET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGO ALTER PROC [dbo].[SGMRAA123]--起的存储过程名称ASDECLARE @j intDECLARE @SqlStr NVARCHAR(MAX) --最 阅读全文
摘要:
option = { title: { text: 'Referer of a Website', subtext: 'Fake Data', left: 'center' }, tooltip: { trigger: 'item' }, legend: { orient: 'vertical', 阅读全文
摘要:
<div contenteditable="true" style="color:#00FF00;width:400px; min-height:20px; max-height:300px; _height:120px; margin-left:auto; margin-right:auto; p 阅读全文
摘要:
select RIGHT('0000'+'1',4) 结果 阅读全文
摘要:
datatable dt=你的要导出的数据 SaveFileDialog sfg = new SaveFileDialog(); //Excel文件名 sfg.FileName = "送货单" + DateTime.Now.ToString("yyyyMMddHHmmss"); sfg.Title 阅读全文
摘要:
需求 :图片设置自定义好的自定义菜单 ,在指定区域添加跳转 <img src="A.png" alt="" usemap="#Map" id="imga" class="imgStyle" /> <map id="CribMap" name="Map"> <area shape="rect" coo 阅读全文
摘要:
hosting.josn 配置 读取 var config= new ConfigurationBuilder() .AddJsonFile("hosting.json", optional: true) .Build(); 取值 string sqlString = config.GetSecti 阅读全文
摘要:
由于项目要上架华为云saas,特此记录开发中遇到的问题 1,验证authToken 根据官方的说明 Dictionary<string, string> paramsMap = new Dictionary<string, string>();//需要字典排序,用字典接受数据 if (!string 阅读全文
摘要:
SELECT name , value = ( STUFF(( SELECT ',' + value FROM A WHERE name = Test.name FOR XML PATH('') ), 1, 1, '') ) FROM A AS Test GROUP BY name; 阅读全文
摘要:
function time(date) { var y = date.getFullYear(); var m = date.getMonth() + 1; m = m < 10 ? ('0' + m) : m; var d = date.getDate(); d = d < 10 ? 阅读全文