Love

To the world you may be one person,but to one person you may be the world.

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2009年3月8日

摘要: Getting Low Level This article looks at how Web requests flow through the ASP.NET framework from a very low level perspective, from Web Server, through ISAPI all the way up the request handler and yo... 阅读全文

posted @ 2009-03-08 22:08 timmy.tian 阅读(170) 评论(0) 推荐(0)

2009年3月6日

摘要: 一、术语session 在我的经验里,session这个词被滥用的程度大概仅次于transaction,更加有趣的是transaction与session在某些语境下的含义是相同的。 session,中文经常翻译为会话,其本来的含义是指有始有终的一系列动作/消息,比如打电话时从拿起电话拨号到挂断电话这中间的一系列过程可以称之为一个session。有时候我们可以看到这样的话“在一个浏览器会话期间,.... 阅读全文

posted @ 2009-03-06 22:47 timmy.tian 阅读(635) 评论(0) 推荐(1)

摘要: 随着WEB2.0及ajax思想在互联网上的快速发展传播,陆续出现了一些优秀的Js框架,其中比较著名的有Prototype、YUI、jQuery、 mootools、Bindows以及国内的JSVM框架等,通过将这些JS框架应用到我们的项目中能够使程序员从设计和书写繁杂的JS应用中解脱出来,将关注点转向功能需求而非实现细节上,从而提高项目的开发速度。 jQuery是继pro... 阅读全文

posted @ 2009-03-06 22:46 timmy.tian 阅读(244) 评论(0) 推荐(0)

2009年3月3日

摘要: A recent question on one of our internal mailing lists asked where the definition for the Bind() method is located in ASP.NET. The asker had located the definition of the Eval() method on the Template... 阅读全文

posted @ 2009-03-03 13:03 timmy.tian 阅读(264) 评论(0) 推荐(0)

2009年3月1日

摘要: I've used this tip at least thrice, so following Phil's "Rule of Three" it's time to do something with it. Link to it now, I shall. It would be easy to pass this one up if you're not using ASP.NET 2... 阅读全文

posted @ 2009-03-01 22:11 timmy.tian 阅读(148) 评论(0) 推荐(0)

2009年2月26日

摘要: The databinding expression is evaluated in the language of the page (VB, C#, etc.) This can have a big impact on the current syntax, so be very careful when you are looking at docs for the language... 阅读全文

posted @ 2009-02-26 15:44 timmy.tian 阅读(181) 评论(0) 推荐(0)

摘要: 转自http://www.cnblogs.com/leochu2008/articles/1237481.html 1. event.srcElement 属性:IE下可以使用event.srcElement属性,但在Firefox下只有target属性,所以要兼容两者需使用:var el = evt.srcElement ? evt.srcElement : evt.target; 2. doc... 阅读全文

posted @ 2009-02-26 09:48 timmy.tian 阅读(723) 评论(0) 推荐(0)

2009年2月24日

摘要: 为泛型集合提供基类。 命名空间: System.Collections.ObjectModel程序集: mscorlib(在 mscorlib.dll 中) 通过创建 Collection 类的一个构造类型的实例,可以立即使用该类;您只需指定要包含在集合中的对象类型即可。此外,您可以从任意构造类型派生自己的集合类型,或者从 Collection 类本身派生出泛型集合类型。 Collection ... 阅读全文

posted @ 2009-02-24 16:43 timmy.tian 阅读(280) 评论(0) 推荐(0)

2009年2月23日

摘要: /////Extends Collectionusing System;using System.Collections;using System.Collections.Generic;using System.Collections.ObjectModel;using System.Text;class ConverterCollection : Collection{ privat... 阅读全文

posted @ 2009-02-23 17:05 timmy.tian 阅读(212) 评论(0) 推荐(0)

2009年2月20日

摘要: By Heath StewartProvides insight and tips on using role-based (groups) Forms Authentication in ASP.NET, which has only partial support for roles. Introduction Forms Authentication in ASP.NET can be a... 阅读全文

posted @ 2009-02-20 12:51 timmy.tian 阅读(230) 评论(0) 推荐(0)

2009年2月19日

摘要: ASP.Net 2.0窗体身份验证机制详解(FormsAuthentication) 作者: [zz]AspCool www.ASPCool.com 时间:2007-1-17 21:41:04 本篇文章介绍了在ASP.Net 2.0如何做窗体身份验证,并且讲解了IIS和ASP.Net2.0窗体身份验证机制是如何结合在一起的。我们还会详细讲解一下2.0中关于窗体身... 阅读全文

posted @ 2009-02-19 10:36 timmy.tian 阅读(191) 评论(0) 推荐(0)

2009年2月18日

摘要: How To: Use Role Manager in ASP.NET 2.0. 1、Cookieless窗体验证 ASP.NET 2.0 支持 cookieless 窗体身份验证。该功能由 forms 元素的 cookieless 属性控制。该属性可以设置为以下四个值之一: • UseCookies。该值强制 FormsAuthenticationModule 类使用... 阅读全文

posted @ 2009-02-18 15:49 timmy.tian 阅读(205) 评论(0) 推荐(0)

2008年1月7日

摘要: 一、SQL Cache 通过配置数据库连接池,只有当数据库数据被改变的时候,缓存才会改变: 注册连接池 命令:c:\dir aspnet_re... 阅读全文

posted @ 2008-01-07 21:25 timmy.tian 阅读(156) 评论(0) 推荐(0)