上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 34 下一页

2010年11月10日

摘要: 浮动的框可以向左或向右移动,直到它的外边缘碰到包含框或另一个浮动框的边框为止。 由于浮动框不在文档的普通流中,所以文档的普通流中的块框表现得就像浮动框不存在一样。 请看下图,当把框 1 向右浮动时,它脱离文档流并且向右移动,直到它的右边缘碰到包含框的右边缘: 再请看下图,当框 1 向左浮动时,它脱离文档流并且向左移动,直到它的左边缘碰到包含框的左边缘。因为它不再处于文档流中,所以它不占据空间,实际上覆盖住了框 2,使框 2 从视图中消失。 如果把所有三个框都向左移动,那么框 1 向左浮动直到碰到包含框,另外两个框向左浮动直到碰到前一个浮动框。 如下图所示,如果包含框太窄,无法容... 阅读全文
posted @ 2010-11-10 10:27 做个不善的人 阅读(256) 评论(0) 推荐(0)
 

2010年11月8日

摘要: 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 做个不善的人 阅读(305) 评论(0) 推荐(0)
 
摘要: 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 做个不善的人 阅读(523) 评论(0) 推荐(0)
 

2010年11月6日

摘要: 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 做个不善的人 阅读(187) 评论(0) 推荐(0)
 
摘要: 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 做个不善的人 阅读(983) 评论(0) 推荐(0)
 

2010年11月5日

摘要: 概述: 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 做个不善的人 阅读(679) 评论(0) 推荐(0)
 

2010年11月1日

摘要: 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 做个不善的人 阅读(1293) 评论(1) 推荐(0)
 

2010年10月30日

摘要: Security principalSecurity principals include the following:Any entity that can be authenticated by the system, such as a user account, a computer account, or a thread or process that runs in the security context of a user or computer account.Security groups of these accounts.Every security principa 阅读全文
posted @ 2010-10-30 16:59 做个不善的人 阅读(317) 评论(0) 推荐(0)
 

2010年10月25日

摘要: XSS 是一种很常见的攻击手段,在该攻击中攻击者将一个恶意代码段注入到一个运行良好的站点中。XSS 攻击有如下两种基本的类型: Reflected XSSStored XSSReflected XSSReflected XSS 攻击的前提条件是某Web应用程序会把用户输入的信息不加检查和限制地返回给用户。一个常见的例子就是,用户登录时,输入用户名和密码,比如用户Joe登录,密码错误了,网站会显示Sorry, Joe, Your password is incorrect。网站把用户名直接返回给用户, 如果用户输入了Javascript代码,会直接返回给用户,并造成Javascript代码执行。 阅读全文
posted @ 2010-10-25 20:09 做个不善的人 阅读(1572) 评论(0) 推荐(0)
 

2010年10月12日

摘要: Reference: http://www.cnblogs.com/panjun-Donet/articles/1294033.html 阅读全文
posted @ 2010-10-12 17:49 做个不善的人 阅读(298) 评论(0) 推荐(0)
 
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 34 下一页