随笔分类 -  .Net技术

.Net技术
摘要:http://plentyoffish.wordpress.com/2011/12/27/32-billion-images-a-month/December 27, 2011 at 4:46 am 发表:In November plentyoffish got nearly 6 billion pageviews and served out nearly 32 billion images in addition to that our IM servers handle about 30 billion pageviews a month.另外网上资料说(转自:http://www.it 阅读全文
posted @ 2011-12-29 15:18 Net205 Blog 阅读(266) 评论(0) 推荐(0)
摘要:来源:http://www.amazedsaint.com/2010/11/top-6-coding-standards-guideline.htmlSome time back, I collated a list of 7 Must Read, Free EBooks for .NET Developers, and a lot of people found it useful. So, I thought about putting together a list of Coding Standard guidelines/checklists for .NET /C# develop 阅读全文
posted @ 2011-09-15 02:08 Net205 Blog 阅读(582) 评论(0) 推荐(0)
摘要:来源:http://www.amazedsaint.com/2010/02/top-5-common-programming-mistakes-net.htmlSome time back, I asked a question in Stackoverflow.com, about common programming mistakes .NET developers must avoid. The response was awesome, to say the least. I’m just listing down the top 5 developer crimes I picked 阅读全文
posted @ 2011-09-15 02:04 Net205 Blog 阅读(284) 评论(0) 推荐(0)
摘要:意译:http://dotnet.dzone.com/news/using-html-5-data-attributesHTML 5的data属性是一种在DOM元素中存储数据的方式,例如我们有一个用户列表,为客户端以后使用想存储用户Id。1 <ul>2 <li data-id=”4” data-role=”admin”>thorsteinsson</li>3 <li data-id=”23” data-role=”user”>john</li>4 </ul> public class User{ public int Id 阅读全文
posted @ 2011-09-15 01:11 Net205 Blog 阅读(484) 评论(0) 推荐(0)
摘要:来自:http://www.dotnetbips.com/articles/dfeb8a51-4b3b-4bc6-aab9-28ac774b1e8c.aspx比如想使用以下代码显示印度格式的时间(Indian Standard Time:IST):DateTime dt=DateTime.Now;DateTime utc = dt.ToUniversalTime();DateTime ist = utc.AddMinutes(330);使用下面2个扩展方法(注意:要用静态类、静态方法还参数中的this):namespace Utils{public static class DateTimeH 阅读全文
posted @ 2011-05-01 02:06 Net205 Blog 阅读(211) 评论(0) 推荐(0)
摘要:来自:http://www.cnbeta.com/articles/133129.htm?1299690294注:《代码阅读方法与实践》(Code Reading: The Open Source Perspective):http://www.verycd.com/topics/14267/原文作者Alan Skorkin是一名软件开发人员,他在博客中分享对软件开发相关的心得,其中有很多优秀的文章,本文是其中的另一篇。Alan认为:阅读优秀代码是提高开发人员修为的一种捷径。以下是全文。我突然想起来,很多程序员都讨厌阅读代码。来吧,承认吧! 每个人都喜欢编写代码,编代码是件趣事。 另一方面,阅 阅读全文
posted @ 2011-03-10 01:42 Net205 Blog 阅读(215) 评论(0) 推荐(0)
摘要:Iused keywords "asp.net develop Interview Questions and answer" to search in google, this is a list of results,some links is very good and have answers。may be,i can search for asp.net Interview Questi... 阅读全文
posted @ 2009-03-23 00:48 Net205 Blog 阅读(313) 评论(0) 推荐(0)
摘要:学习jQuery了,很high很亢奋。官网上的东西当然是好东西啦:http://jquery.comhttp://docs.jquery.com/Main_Pagehttp://docs.jquery.com/Tutorials老外的一篇文章:http://www.west-wind.com/presentations/jQuery/default.aspxhttp://www.west-wind... 阅读全文
posted @ 2009-03-18 19:00 Net205 Blog 阅读(251) 评论(0) 推荐(0)
摘要:今天有同事遇到了XML中包含特殊字符"",导致XML解析出错,他的IE7解析错误,我的FF3也解析出错,但我的IE6却可以显示正常,只是状态栏提示警告信息。于是我在网上查找相关资料,发现W3C中指定不能包括这些特殊字符。对于XML,我们一般只对以下字符进行转义(避免escape这些字符):"<" "&lt;" ">" "&gt;" "\"" "&quot;" ... 阅读全文
posted @ 2009-03-17 17:54 Net205 Blog 阅读(1294) 评论(0) 推荐(0)