malaikuangren

What is the purpose or drive to build thing like (xxx),How can it achieve the original goal of design?
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 27 下一页

2012年12月13日

Asp.net MVC 4 and .Net 4.5 Bundling and Minification(Web Site Optimization)

摘要: http://www.asp.net/mvc/tutorials/mvc-4/bundling-and-minification 阅读全文

posted @ 2012-12-13 09:38 malaikuangren 阅读(136) 评论(0) 推荐(0) 编辑

2012年12月8日

Servlets beat CGI

摘要: The main drawback to CGI is that it must run a new copy of the CGI-aware programfor each request. This is a relatively expensive process that can bog downhigh-volume sites where thousands of requests are serviced per minute. Anotherdrawback is that CGI programs tend to be platform dependent. A CGI p 阅读全文

posted @ 2012-12-08 23:05 malaikuangren 阅读(133) 评论(0) 推荐(0) 编辑

2012年11月22日

javascript single quotes and double quotes marks nesting

摘要: var sNewNodeHtml="<li id='097874a0-6e25-4bdb-bd74-53f44f099dd6' class='t-item' onclick='treeNodeSelect(\"d3bfbd27-05e4-4792-a8f0-d3be77c648d7\");'>"; sNewNodeHtml+="<div class='t-top'>"; sNewNodeHtml+="<span class=' 阅读全文

posted @ 2012-11-22 17:33 malaikuangren 阅读(199) 评论(0) 推荐(0) 编辑

2012年11月18日

How to Getting A Repository History With SVNKIt

摘要: In this example we'll demonstarte how you may get the history of changes made to a repository (i.e perform a logoperation) starting with the very first revision and up to the very last one.public class History { public static void main( String[] args ) { DAVRepositoryFactory.setup( ); ... 阅读全文

posted @ 2012-11-18 23:54 malaikuangren 阅读(355) 评论(0) 推荐(0) 编辑
What is the Working Copy of SVN?

摘要: The first question a newcomer toSubversionmay ask to himself -What is this and how can I use it in my work?Speaking shortlySubversioncan be characterized as a version control system which tracks the history of file and directory changes over time. All versioned files and directories reside as a tree 阅读全文

posted @ 2012-11-18 23:25 malaikuangren 阅读(218) 评论(0) 推荐(0) 编辑

2012年11月15日

How to create custom html helper in Asp.net MVC 3 or 4

摘要: I will try to show you a basic feature of ASP.NET MVC, creating custom HTML Helpers. We can reduce the amount of logic in view pages (razor or asp.net –aspx- pages) by extracting logic code as method.HTML Helper methods are nothing more than methods that are returning string. If you want to write yo 阅读全文

posted @ 2012-11-15 23:52 malaikuangren 阅读(367) 评论(0) 推荐(0) 编辑
Asp.net routing vs Url rewriting

摘要: ASP.NET routing differs from URL rewriting. URL rewriting processes incoming requests by actually changing the URL before it sends the request to the Web page. For example, an application that uses URL rewriting might change a URL from/Products/Widgets/to/Products.aspx?id=4. Also, URL rewriting typi 阅读全文

posted @ 2012-11-15 20:40 malaikuangren 阅读(170) 评论(0) 推荐(0) 编辑
What if you encounter a problem when consume your WCF service ? How to Diagnostic it ?

摘要: The Answer is the Log Tracing the WCF .My service is:[OperationContract(Name="Add")][WebInvoke(UriTemplate = "test/", Method = "POST", ResponseFormat=WebMessageFormat.Json, RequestFormat=WebMessageFormat.Json )]public int Add(Number n1){ res = Convert.ToInt32(n1.Number1 阅读全文

posted @ 2012-11-15 10:06 malaikuangren 阅读(341) 评论(0) 推荐(0) 编辑

2012年11月14日

RESTful WCF Services with No svc file and No config and How to use Service Route

摘要: RESTful WCF Services with No svc file and No configWhile Microsoft continues to add features to WCF with each version, they are also adding features thatsimplifyworking with WCF services as well. Historically WCF has been somewhat intimidating to the uninitiated because of the non-trivial configurat 阅读全文

posted @ 2012-11-14 14:30 malaikuangren 阅读(403) 评论(0) 推荐(0) 编辑
How to combine WCF Route and MVC Route to work together.

摘要: WCF REST Services Inside MVC ProjectsRecently I blogged aboutWCF REST services with no svc file and no config. In this post I also discussed the pros/cons of WCF services as compared to using MVC controller actions for web services and I made the case that, in many instances, WCF REST services is be 阅读全文

posted @ 2012-11-14 10:44 malaikuangren 阅读(691) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 27 下一页