malaikuangren

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

2013年8月13日

SingleThreadModel is deprecated in Servlet API version 2.4

摘要: Ensures that servlets handle only one request at a time. This interface has no methods.If a servlet implements this interface, you areguaranteedthat no two threads will execute concurrently in the servlet'sservicemethod. The servlet container can make this guarantee by synchronizing access to a 阅读全文

posted @ 2013-08-13 22:23 malaikuangren 阅读(236) 评论(0) 推荐(0) 编辑
What is the difference Apache (Http Server) and Tomcat (Servlet Container)

摘要: The Apache ProjectThe Apache Project is a collaborative software development effort.Its goal is to produce a robust, commercial-grade, free HTTP server.The project is run by volunteers the Apache Group communicating and planning through the Internet.Organizational support is provided by the Apache S 阅读全文

posted @ 2013-08-13 21:53 malaikuangren 阅读(420) 评论(0) 推荐(0) 编辑

2013年7月31日

Add a stylesheet link programmatically in ASP.NET

摘要: Here’s a code snippet used to programmatically insert a stylesheet link to an external CSS file:// Create the element for the CSS filevar stylesheet = new HtmlLink { Href = "/path/to/stylesheet.css" };stylesheet.Attributes.Add("rel","stylesheet");stylesheet.Attributes.A 阅读全文

posted @ 2013-07-31 23:36 malaikuangren 阅读(251) 评论(0) 推荐(0) 编辑

2013年7月11日

Detail in Response.redirect and Server.transfer in ASP.NET

摘要: http://www.developerfusion.com/article/4643/implementing-http-handlers-in-aspnet/4/ 阅读全文

posted @ 2013-07-11 17:50 malaikuangren 阅读(131) 评论(0) 推荐(0) 编辑

2013年6月24日

@font-face usage

摘要: If you haven’t been living in a cave for the past few months, you will have heard lots of talk about the @font-face CSS declaration, which lets you use custom fonts in your web pages. This is very exciting, but unfortunately every browser supports @font-face slightly differently. The latest browsers 阅读全文

posted @ 2013-06-24 23:38 malaikuangren 阅读(407) 评论(0) 推荐(0) 编辑

2013年5月9日

What is the Revolving account

摘要: From the Wiki.http://en.wikipedia.org/wiki/Revolving_accountArevolving accountis an account created by a lender to representdebtswhere the outstanding balance does not have to be paid in full every month by the borrower to the lender. The borrower may be required to make a minimum payment, based on 阅读全文

posted @ 2013-05-09 23:01 malaikuangren 阅读(175) 评论(0) 推荐(0) 编辑

2013年4月22日

Intro to Subversion’s Working Copy

摘要: Apache Subversion(also referred to as SVN) is an open source version control system. Although it’s widely used for managing source code files, it can actually be used to manage any type of file: images, videos and Word documents can all be managed with Subversion. At its core, Subversion allows team 阅读全文

posted @ 2013-04-22 13:26 malaikuangren 阅读(218) 评论(0) 推荐(0) 编辑

2013年4月13日

The usage of the Javascript method call and apply(what is the new and object.create difference.)(What does call(null) mean?)

摘要: firstly please review a code sample below . the output is "joe" instead of the "wq".so, found the mystery the call ?Another case need to be m... 阅读全文

posted @ 2013-04-13 16:34 malaikuangren 阅读(210) 评论(0) 推荐(0) 编辑

2013年4月4日

Css Div Position and float

摘要: http://javapub.iteye.com/blog/733471http://stackoverflow.com/questions/804926/make-outer-div-be-automatically-the-same-height-as-its-floating-content 阅读全文

posted @ 2013-04-04 22:00 malaikuangren 阅读(141) 评论(0) 推荐(0) 编辑

2013年3月22日

What's the best way to define a class in javascript

摘要: // Define a class like thisfunction Person(name, gender){ // Add object properties like this this.name = name; this.gender = gender;}// Add methods like this. All Person objects will be able to invoke thisPerson.prototype.speak = function(){ alert("Howdy, my name is" + this.name);}// Insta 阅读全文

posted @ 2013-03-22 15:20 malaikuangren 阅读(147) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 27 下一页