上一页 1 ··· 6 7 8 9 10 11 12 下一页
摘要: declare @maxSort int=0 set @sqlUpdateSort='select @maxSort=max(Display_Sequence'+@categoryRow+') from tblMENU_ITEMS where category'+@categoryR... 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(143) 评论(0) 推荐(0)
摘要: CREATE TABLE #temp (TableName VARCHAR (255), RowCnt INT) EXEC sp_MSforeachtable 'INSERT INTO #temp SELECT ''?'', COUNT(*) FROM ?' SELECT Table... 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(188) 评论(0) 推荐(0)
摘要: 不能上传文件夹中的的子目录 username 用户名 password密码 cd上传到什么路径 lcd本地要上传的文件夹 mput 上传文件类型mput * 上传所有文件 username password binary cd "/destinationfolder" lcd "C... 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(2820) 评论(0) 推荐(0)
摘要: 首先配置数据库属性 sp_configure 'show advanced options', 1 go reconfigure go sp_configure 'xp_cmdshell', 1 go reconfigure go sp_configure 'ole automati... 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(391) 评论(0) 推荐(0)
摘要: delegate double DoubleOp(double x); class Program { static void Main() { DoubleOp[] operations = { MathOperations.MultiplyByTwo, MathOperation... 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(73) 评论(0) 推荐(0)
摘要: 发布到iis上, application pool用的是framework 4.0时,验证控件颜色不显示红色, 改成framework2.0 一切正常。 需要web.config中pages标签后面加上controlRenderingCompatibilityVersion="3.5... 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(85) 评论(0) 推荐(0)
摘要: Nlog.config文件 StoreName就是自定义的变量名 private static Logger logger = LogManager.GetCurrentClassLogger(); LogEventInfo theEventInfo = nu... 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(789) 评论(0) 推荐(0)
摘要: show() speed:三种预定速度之一的字符串("slow","normal", or "fast")或表示动画时长的毫秒数值(如:1000) fn:在动画完成时执行的函数,每个元素执行一次。 fadeIn(),fadeOut() 通过不透明度的变化来实现所有匹配元素的淡入效果,... 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(179) 评论(0) 推荐(0)
摘要: var entrys = (from entry in db.Entries orderby entry.DateAdded descending select entry).Take(20); 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(77) 评论(0) 推荐(0)
摘要: /* basic calc */ .simpleBlock { width: calc(100% - 100px); } /* calc in calc */ .complexBlock { width: calc(100% - 50% / 3); padding: 5px calc... 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(73) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 下一页