ie421.NET

面对技术,你别无选择,.NET世界是如此精彩,而我们要做的就是:Thinking More

博客园 首页 新随笔 联系 订阅 管理
上一页 1 2 3 4 5 6 ··· 9 下一页

2008年8月29日 #

摘要: 最近很多人在问,我该如何学习OpenGL?我学完了OpenGL了,该怎么用? 我想在回答这些类似的问题以前先和大家谈谈怎么学习API的方法,或许谈完了,我就不需要回答了。 首先,我认为API是工具,不是本质,OpenGL/Direct3D的本质是图形学,而不是OpenGL/Direct3D的本身,... 阅读全文
posted @ 2008-08-29 13:39 ie421 阅读(425) 评论(2) 推荐(0) 编辑

摘要: 1.把C++当成一门新的语言学习(和C没啥关系!真的。); 2.看《Thinking In C++》,不要看《C++变成死相》; 3.看《The C++ Programming Language》和《Inside The C++ Object Model》,不要因为他们很难而我们自己是初学者所以... 阅读全文
posted @ 2008-08-29 13:29 ie421 阅读(258) 评论(0) 推荐(0) 编辑

摘要: 转自:http://www.pconline.com.cn/pcedu/empolder/gj/c/0504/609482.html 六年前,我刚热恋“面向对象”(Object-Oriented)时,一口气记住了近十个定义。六年后,我从几十万行程序中滚爬出来准备写点心得体会时,却无法解释什么是“面向... 阅读全文
posted @ 2008-08-29 09:37 ie421 阅读(449) 评论(1) 推荐(0) 编辑

2008年8月27日 #

摘要: 文件上传之前的检测,通常是通过文件名来判断文件类型是否合法,但是要想检测文件的大小很难办到,除非在本地或者使用控件。不过在IE下img有几个附加的属性,如:fileCreatedDate、fileModifiedDate、fileSize、fileUpdatedDate、filters,我们可以通过... 阅读全文
posted @ 2008-08-27 19:11 ie421 阅读(450) 评论(0) 推荐(0) 编辑

2008年8月26日 #

摘要: 在Head中加入 添加css: e.g. 页面上存在 给 input输入值后刷新页面看看,输入的值还在 阅读全文
posted @ 2008-08-26 22:17 ie421 阅读(1697) 评论(3) 推荐(0) 编辑

摘要: WCF生成JSON的日期型为:Date(1213545600000 + 0800),该类型为UTC的日期格式,可以通过new Date(1213545600000 + 0800)转化为日期对象,然后获取值。如:(new Date(1213545600000 + 0800)).toLocaleDate... 阅读全文
posted @ 2008-08-26 16:30 ie421 阅读(453) 评论(0) 推荐(0) 编辑

摘要: 原文:http://www.cnblogs.com/teddyma/archive/2006/07/28/462314.html 本文给出一个通过组合使用JST,JSON和AJAX技术,使用客户端js模版代替服务端数据绑定的范例。很显然的,使用客户端数据绑定代替服务端数据绑定能够大大减少服务端的内... 阅读全文
posted @ 2008-08-26 13:58 ie421 阅读(1031) 评论(1) 推荐(0) 编辑

2008年8月25日 #

摘要: By Dave Ward on August 13th, 2008 In two of my recent posts, I demonstrated using ASP.NET AJAX in conjunction with jQuery or ASP.NET AJAX 4.0’s temp... 阅读全文
posted @ 2008-08-25 15:06 ie421 阅读(287) 评论(0) 推荐(0) 编辑

摘要: 原文:http://mattberseth.com/blog/2008/06/getting_jquery_goodness_into_a_1.html#comment-23799 So clearly I am obsessing about getting jQuery features ... 阅读全文
posted @ 2008-08-25 12:31 ie421 阅读(288) 评论(0) 推荐(0) 编辑

摘要: By Dave Ward on June 26th, 2008 There was some interesting discussion on Matt Berseth’s blog recently, regarding methods for building and displaying... 阅读全文
posted @ 2008-08-25 11:45 ie421 阅读(900) 评论(0) 推荐(0) 编辑

摘要: When I suggest that developers consider using web services and a more client-centric approach to solve their UpdatePanel performance problems, the... 阅读全文
posted @ 2008-08-25 11:25 ie421 阅读(558) 评论(0) 推荐(0) 编辑

摘要: 原文:明轩的blog Ajax中使用json这个轻量级数据类型通信的好处相信大家已经很清楚,考虑到安全问题,Asp.net Ajax的webService使用json,应该防止Json Hijacking。因此通常我们的做法是在使用Post请求式,并将请求的content-type设置成appl... 阅读全文
posted @ 2008-08-25 11:05 ie421 阅读(621) 评论(0) 推荐(0) 编辑

2008年8月23日 #

摘要: 原文:http://www.noupe.com/tutorial/51-best-of-jquery-tutorials-and-examples.html There’s stuff all over the Web about jQuery, but finding the best tut... 阅读全文
posted @ 2008-08-23 16:57 ie421 阅读(472) 评论(0) 推荐(0) 编辑

摘要: 网页可见区域宽:document.body.clientWidth 网页可见区域高:document.body.clientHeight 网页可见区域宽:document.body.offsetWidth (包括边线的宽) 网页可见区域高:document.body.offsetHeight (包括... 阅读全文
posted @ 2008-08-23 00:07 ie421 阅读(1940) 评论(0) 推荐(0) 编辑

2008年8月22日 #

摘要: 通过.Net FrameWork 2.0下提供的“System.Net.Mail”可以轻松的实现,本文列举了3种途径来发送: 1.通过Localhost; 2.通过普通SMTP; 3.通过SSL的SMTP; 下面一个一个来说: 1.通过LocalHost 1public ... 阅读全文
posted @ 2008-08-22 10:41 ie421 阅读(319) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 9 下一页