工程是一门科学,科学是严谨的。
上一页 1 ··· 4 5 6 7 8 9 下一页
摘要: 1 string imgpName = @"005"; 2 Image image = Image.FromFile(@"G:\" + imgpName + @".jpg"); 3 Image img = (Image)ima... 阅读全文
posted @ 2013-03-07 19:15 大圣的笑 阅读(377) 评论(0) 推荐(0) 编辑
摘要: 1.通过系统的“性能”来查看:开始->管理工具->性能(或者是运行里面输入 mmc)然后通过添加计数器添加 SQL 的常用统计(MSSQL General Statistics) 然后在下面列出的项目里面选择 用户连接(User Connection) 就可以时时查询到sql server数据库连接 阅读全文
posted @ 2013-03-07 11:20 大圣的笑 阅读(31095) 评论(0) 推荐(1) 编辑
摘要: 同一解决方案下引用了DLL,但是依然显示缺少这个DLL程序集 阅读全文
posted @ 2013-03-06 16:01 大圣的笑 阅读(353) 评论(0) 推荐(0) 编辑
摘要: 1 var comment = {}; 2 comment.postId = 2892826;//每篇博客对应一个唯一的标识ID,必须 3 comment.Body = '123';//评论内容,必须 4 comment.ParentCommentID = 0;//默认0,对现有评论进行评论时,为评论ID,必须 5 $.ajax({ 6 url: '/mvc/PostComment/New.aspx', 7 data: JSON.stringify(comment), 8 ... 阅读全文
posted @ 2013-02-06 16:18 大圣的笑 阅读(240) 评论(0) 推荐(0) 编辑
摘要: 1 #region 检测是否是正确的身份证 2 /// <summary> 3 /// 身份证验证 4 /// </summary> 5 /// <param name="num"></param> 6 /// <returns></returns> 7 public static bool isI 阅读全文
posted @ 2013-02-05 15:34 大圣的笑 阅读(1025) 评论(0) 推荐(1) 编辑
摘要: 1 /// 2 /// 分页标签字符串生成 3 /// 4 /// 页码 5 /// 每页信息数 6 /// 信息总数 7 /// 页面URL(会在后面拼接?pn=页码) 8 /// 9 public static string PageTagString(int pageNum, int pageCount, int amount, string url)10 {11 StringBuilder str = new S... 阅读全文
posted @ 2013-02-01 14:44 大圣的笑 阅读(284) 评论(0) 推荐(0) 编辑
摘要: #region 通讯函数 /// /// 通讯函数 /// /// 请求Url /// 请求参数 /// 请求方式GET/POST /// public static string... 阅读全文
posted @ 2013-01-18 09:32 大圣的笑 阅读(7191) 评论(0) 推荐(0) 编辑
摘要: CSS3的强大,让人惊叹,人们在惊喜之余,又不得不为其艰难的道路感到可惜:好的标准只有得到行业浏览器的良好支持才算得上“标准”。CSS3标 准已提出数年,但是目前能实现她的浏览器并不多,虽然部分浏览器能实现部分规范,但这又有什么用呢?面对更多的兼容性问题,CSSer们只有望洋轻叹。虽然如此,但有前瞻性的我们,又怎能停步不前呢?今天我们就来“前瞻”一下CSS3的一个伪类选择器“:nth-child()”。语法::nth-child(an+b)为什么选择她,因为我认为,这个选择器是最多学问的一个了。很可惜,据我所测,目前能较好地支持她的只有Opera9+和Safari3+。描述:伪类:nth-ch 阅读全文
posted @ 2012-12-27 23:02 大圣的笑 阅读(475) 评论(0) 推荐(0) 编辑
摘要: -webkit-animation: name, duration, timing-function, delay, iteration_count, direction( 1 ) -webkit-animation-name 这个属性的使用必须结合@-webkit-keyframes一起使用eg: @-webkit-keyframes fontchange{0%{font-size:10px;}30%{font-size:15px;}100%{font-siez:12px;}}百分比的意思就是duration的百分比,如果没有设置duration的话,则表示为无穷大。( 2)-webkit- 阅读全文
posted @ 2012-12-27 22:14 大圣的笑 阅读(2695) 评论(0) 推荐(0) 编辑
摘要: -webkit-transition : property, duration, timing-function, delay;Property : css属性 。Duration : 过渡持续的时间,以秒为单位(如:0.75s)。Timing function : 计时功能,控制duration如何计时,可快可慢。Delay : 延迟,动作触发后多久开始产生过渡效果(如:0.75s)。property:width | height | opacity ......( all 包括所有css属性)duration | delay : 1s | 0.75s | 0stiming function 阅读全文
posted @ 2012-12-27 22:04 大圣的笑 阅读(453) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 下一页