摘要:
https://blog.csdn.net/deepwishly/article/details/9101307 这是计算一个月第一天的SQL 脚本: SELECT DATEADD(mm, DATEDIFF(mm,0,getdate()), 0) --当月的第一天SELECT DATEADD(mm, 阅读全文
摘要:
public static T XmlConvertModel<T>(string xmlStr) where T : class, new() { T t = new T(); XmlDocument xmlDoc = new XmlDocument(); xmlDoc.LoadXml(xmlSt 阅读全文
摘要:
groupPrint.MouseDown += GroupBox1_MouseDown; #region 弹出层移动 [System.Runtime.InteropServices.DllImport("user32.dll", EntryPoint = "ReleaseCapture")] pub 阅读全文
摘要:
https://www.cnblogs.com/mq0036/p/6421946.htmlusing System.Runtime.InteropServices; public class Win32 { public const Int32 AW_HOR_POSITIVE = 0x0000000 阅读全文
摘要:
XML 控件加上属性 阅读全文
摘要:
https://www.cnblogs.com/simadi/p/6698666.html?utm_source=itdadao&utm_medium=referral 今天又发现了一个Android Studio强大的功能,非常惊叹! 我们开发Android应用程序时,Activity或者Frag 阅读全文
摘要:
SET @msg='错误消息'; RAISERROR(@msg, 16, 1); ROLLBACK TRANSACTION; close LimitAddOrder; DEALLOCATE LimitAddOrder; RETURN; 阅读全文
摘要:
https://blog.csdn.net/leftfist/article/details/69629394 目前在做的项目存在XSS安全漏洞!原因是有一些页面使用了富文本编辑框,为了使得其内容可以提交,为相关action设置了[ValidateInput(false)] 特性: [HttpPos 阅读全文