上一页 1 ··· 6 7 8 9 10 11 12 下一页
摘要: delegate double DoubleOp(double x); class Program { static void Main() { DoubleOp[] operations = { MathOperations.MultiplyByTwo, MathOperation... 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 发布到iis上, application pool用的是framework 4.0时,验证控件颜色不显示红色, 改成framework2.0 一切正常。 需要web.config中pages标签后面加上controlRenderingCompatibilityVersion="3.5... 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(81) 评论(0) 推荐(0) 编辑
摘要: show() speed:三种预定速度之一的字符串("slow","normal", or "fast")或表示动画时长的毫秒数值(如:1000) fn:在动画完成时执行的函数,每个元素执行一次。 fadeIn(),fadeOut() 通过不透明度的变化来实现所有匹配元素的淡入效果,... 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(164) 评论(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 阅读(377) 评论(0) 推荐(0) 编辑
摘要: var entrys = (from entry in db.Entries orderby entry.DateAdded descending select entry).Take(20); 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(71) 评论(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 阅读(68) 评论(0) 推荐(0) 编辑
摘要: var transferFromUserName = $("#" + "").find("option:selected").text(); var transferFromUserID = $("#" + "").find("option:selected").val(); 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(41) 评论(0) 推荐(0) 编辑
摘要: create Procedure [dbo].[sp_LookForSP]( @DatabaseName VarChar(100) , @KeyWord1 VarChar(100), @KeyWord2 VarChar(100), @KeyWord3 VarChar(100) ) A... 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 步骤 1.在iis中添加项目此项目启用asp调试功能 2.配置oldb连接 控制面板-》管理工具-》Data Sources (ODBC) 3.运行网站,启动vs并且附加到进程,进程是"w3p.exe" 4. iis中需要打开asp的调试功能 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 数组也可以用这个类型 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(59) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 下一页