11 2010 档案

 
CSS 浮动
摘要:浮动的框可以向左或向右移动,直到它的外边缘碰到包含框或另一个浮动框的边框为止。 由于浮动框不在文档的普通流中,所以文档的普通流中的块框表现得就像浮动框不存在一样。 请看下图,当把框 1 向右浮动时,它脱离文档流并且向右移动,直到它的右边缘碰到包含框的右边缘: 再请看下图,当框 1 向左浮动时,它脱离文档流并且向左移动,直到它的左边缘碰到包含框的左边缘。因为它不再处于文档流中,所以它不占据空间,实际上覆盖住了框 2,使框 2 从视图中消失。 如果把所有三个框都向左移动,那么框 1 向左浮动直到碰到包含框,另外两个框向左浮动直到碰到前一个浮动框。 如下图所示,如果包含框太窄,无法容... 阅读全文
posted @ 2010-11-10 10:27 做个不善的人 阅读(264) 评论(0) 推荐(0)
Side-by-Side Execution
摘要:Side-by-side execution is the ability to run multiple versions of an application or component on the same computer. You can have multiple versions of the common language runtime, and multiple versions of applications and components that use a version of the runtime, on the same computer at the same 阅读全文
posted @ 2010-11-08 17:18 做个不善的人 阅读(310) 评论(0) 推荐(0)
ASP.NET application and page life cycle
摘要:The Two step processFrom 30,000 feet level ASP.NET request processing is a 2 step process as shown below. User sends a request to the IIS:ASP.NET creates an environment which can process the request. In other words it creates the application object, request, response and context objects to process t 阅读全文
posted @ 2010-11-08 17:14 做个不善的人 阅读(525) 评论(0) 推荐(0)
ASP.NET Compilation
摘要:ASP.NET Web Site Precompilation Overview File Handling During ASP.NET Precompilation http://msdn.microsoft.com/en-us/library/ms227430(v=VS.85).aspx 阅读全文
posted @ 2010-11-06 15:02 做个不善的人 阅读(189) 评论(0) 推荐(0)
@ Page Directive
摘要:Defines page-specific (.aspx file) attributes used by the ASP.NET page parser and compiler. <%@ Page attribute="value" [attribute="value"...] %>AttributesAsyncMakes the page an asynchronous handler (that is, it causes the page to use an implementation of IHttpAsyncHandler t 阅读全文
posted @ 2010-11-06 15:00 做个不善的人 阅读(984) 评论(0) 推荐(0)
Windows Live ID Delegated Authentication
摘要:概述: Delegated Authentication简单来讲就是为Windows Live ID user 提供权限管理的一种机制。Windows Live中提供了很多的个人信息,比如你的Calendar,你的Contacts等等,这些信息可以被第三方的应用程序开发成更多的应用,比如Contacts可以建立社交网站。 当然还有很多种使用这些信息的方法,开发者可以进一步发掘。 Core Concepts Data providers / Resource providers A Windows Live service that registers offers and actions wi 阅读全文
posted @ 2010-11-05 13:07 做个不善的人 阅读(686) 评论(0) 推荐(0)
ASP.NET Web server controls
摘要:ASP.NET 有三种类型的Control:ASP.NET Web server controls 、ASP.NET User Controls 和 ASP.NET Web Parts Controls。 ASP.NET Web server controls are objects on ASP.NET Web pages that run when the page is requested and that render markup to a browser. Many Web server controls resemble familiar HTML elements, such 阅读全文
posted @ 2010-11-01 14:06 做个不善的人 阅读(1295) 评论(1) 推荐(0)