摘要: 环境搭建 1、安装node环境 2、安装typescript,-g表示全局安装。 npm i typescript -g 3、安装完毕后查看typescript版本 tsc -v 编译配置 可以在typescript的配置文件tsconfig.json中配置编译选项。 { "compileOnSav 阅读全文
posted @ 2021-09-18 20:40 lp123 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 1、环境搭建 1.1 准备全局环境 1.1.1 安装运行时环境 node.js,可到官网自行下载稳定版本。node.js只需要在开发环境中安装,无需在发布环境中安装。为什么?因为开发环境需要使用到各种各样的开发工具:如webapck、@angular/cli、sass/less等等,这些工具等运行需 阅读全文
posted @ 2021-09-17 21:11 lp123 阅读(325) 评论(1) 推荐(0) 编辑
摘要: --Join the data with the same ID togetherdeclare @tbl table (Sid int identity, ID int, Description varchar(100) )insert into @tblselect 1001, 'Test 1001'union allselect 1001, 'Test 1001 dsdfsdf'union ... 阅读全文
posted @ 2010-10-22 17:23 lp123 阅读(128) 评论(0) 推荐(0) 编辑
摘要: use mastergo--Get all logins with sysadmin role.select b.name,b.type,b.type_desc,c.namefrom sys.server_role_members ainner join sys.server_principals bon a.member_principal_id = b.principal_idinner jo... 阅读全文
posted @ 2010-07-31 18:48 lp123 阅读(162) 评论(0) 推荐(0) 编辑
摘要: -- =======================================================================-- SQL SCRIPT to create LOGIN in the SERVER, and assign sysadmin role to it.-- ===============================================... 阅读全文
posted @ 2010-07-31 18:29 lp123 阅读(188) 评论(0) 推荐(0) 编辑
摘要: http://www.bidn.com/blogs/BradSchacht/ssis/617/server-%E2%80%98servername%E2%80%99-is-not-configured-for-rpc 阅读全文
posted @ 2010-07-15 18:15 lp123 阅读(142) 评论(0) 推荐(0) 编辑
摘要: <script text/type="javascript"> function document.onkeydown() { var e = event.srcElement; var k = event.keyCode; if (k == 13 && e.type != "textarea") { var sbmt = document.getElementById... 阅读全文
posted @ 2010-07-12 15:07 lp123 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 1, someControl.Visible=false;2, someControl.Attributes.Add("style", "display:none"); 阅读全文
posted @ 2010-06-17 18:30 lp123 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 1, URL Accessstring urlReport = "http://216.91.145.207/Reportserver?%2fDataRapRAFAdmin/AttestationHMPN&rs:Command=Render&rc:Parameters=false&rs:Format=HTML4.0&GMPI=50303"; this.rptCont... 阅读全文
posted @ 2010-06-11 15:15 lp123 阅读(244) 评论(0) 推荐(0) 编辑
摘要: 转:http://yotoamo.blog.163.com/blog/static/8327765720091201038648/VS2008中的“Alert”破坏网页样式的解决方法学习滋味 2009-02-20 01:00:38 阅读47 评论0 字号:大中小 这两天网站,遇到了输入JS脚本,破坏CSS样式的问题,原来写法:Response.Write("<scri... 阅读全文
posted @ 2010-06-02 18:20 lp123 阅读(388) 评论(0) 推荐(0) 编辑