上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 51 下一页
摘要: https://blog.csdn.net/deepwishly/article/details/9101307 这是计算一个月第一天的SQL 脚本: SELECT DATEADD(mm, DATEDIFF(mm,0,getdate()), 0) --当月的第一天SELECT DATEADD(mm, 阅读全文
posted @ 2019-11-14 14:20 LuoCore 阅读(2064) 评论(0) 推荐(0) 编辑
摘要: public static T XmlConvertModel<T>(string xmlStr) where T : class, new() { T t = new T(); XmlDocument xmlDoc = new XmlDocument(); xmlDoc.LoadXml(xmlSt 阅读全文
posted @ 2019-11-13 19:18 LuoCore 阅读(271) 评论(0) 推荐(0) 编辑
摘要: groupPrint.MouseDown += GroupBox1_MouseDown; #region 弹出层移动 [System.Runtime.InteropServices.DllImport("user32.dll", EntryPoint = "ReleaseCapture")] pub 阅读全文
posted @ 2019-10-23 11:41 LuoCore 阅读(374) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/mq0036/p/6421946.htmlusing System.Runtime.InteropServices; public class Win32 { public const Int32 AW_HOR_POSITIVE = 0x0000000 阅读全文
posted @ 2019-10-23 11:13 LuoCore 阅读(823) 评论(0) 推荐(0) 编辑
摘要: XML 控件加上属性 阅读全文
posted @ 2019-09-27 14:36 LuoCore 阅读(1410) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/simadi/p/6698666.html?utm_source=itdadao&utm_medium=referral 今天又发现了一个Android Studio强大的功能,非常惊叹! 我们开发Android应用程序时,Activity或者Frag 阅读全文
posted @ 2019-09-27 11:41 LuoCore 阅读(1837) 评论(0) 推荐(0) 编辑
摘要: SET @msg='错误消息'; RAISERROR(@msg, 16, 1); ROLLBACK TRANSACTION; close LimitAddOrder; DEALLOCATE LimitAddOrder; RETURN; 阅读全文
posted @ 2019-09-03 10:34 LuoCore 阅读(770) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/leftfist/article/details/69629394 目前在做的项目存在XSS安全漏洞!原因是有一些页面使用了富文本编辑框,为了使得其内容可以提交,为相关action设置了[ValidateInput(false)] 特性: [HttpPos 阅读全文
posted @ 2019-07-27 18:06 LuoCore 阅读(638) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/lusunqing/p/3660190.html 阅读全文
posted @ 2019-06-28 15:46 LuoCore 阅读(471) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/yige/p/5193253.html declare @sqlTabName varchar(100);-- 声明游标DECLARE C_Employees CURSOR FAST_FORWARD FOR SELECT name FROM sysob 阅读全文
posted @ 2019-06-28 15:45 LuoCore 阅读(469) 评论(0) 推荐(0) 编辑
上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 51 下一页