365key.com
发现·保存·分享@天天网摘

Q版365key  设为首页 加为收藏 帮助

 首页  网址  添加  我的网摘  我的订阅  最新网摘  收录榜  点击榜  同好  配置  工具箱  标签  兴趣小组 
  IT168 |  华军下载 |  猫扑 |  VeryCD |  CSDN技术 |  DoNews |  9Flash |  中金 |  游侠 |  股票天下 |  游戏公会 |  电子工程 |  白银时代 |  和365Key合作

chwkai的网摘列表 RSS格式输出  365Key邮件订阅,每天可以定期收到邮件通知  使用 POTU 订阅
搜索词: 时间:
分类:     排序:
 
刷新列表 共6页、150项网摘
Florin Lazar's WebLog点击:76
 分类:dotnet; IT技术资料集; EIP 时间:2006-5-29 8:53:10 chwkai收录 复制到我的网摘
Florin Lazar: ms分布式处理专家,有不少关于分布式transaction处理的方法和设计。
http://blogs.msdn.com/florinlazar/default.aspx
Processing Transactions (.NET Framework Developer's Guide)点击:71
 分类:dotnet; IT技术资料集; EIP 时间:2006-5-29 8:43:40 chwkai收录 复制到我的网摘
MSDN: 分布式事务处理指南
http://msdn.microsoft.com/library/en-us/cpguide/html/cpconProcessingTransactions.asp?frame=true
Florin Lazar's WebLog : Using distributed transactions in .Net 1.x without deriving from ServicedComponent点击:63
 分类:dotnet; IT技术资料集 时间:2006-5-28 22:20:40 chwkai收录 复制到我的网摘
Using distributed transactions in .Net 1.x without deriving from ServicedComponent
http://blogs.msdn.com/florinlazar/archive/2004/07/24/194199.aspx
Transaction Control (Building Distributed Applications)点击:50
 分类:dotnet; IT技术资料集 时间:2006-5-28 22:06:14 chwkai收录 复制到我的网摘
使用ServiceComponent来编写分布式事务处理,
A transaction is a series of operations performed as a single unit of work. By binding a set of related operations together in a transaction, you ensure the consistency and reliability of the system despite any errors that occur. All operations in a transaction must complete successfully in order to make the transaction successful.
http://msdn.microsoft.com/library/en-us/dnbda/html/bdadotnettransact1.asp?frame=true
Distributed Transactions点击:80
 分类:dotnet; IT技术资料集; EIP 时间:2006-5-28 22:02:26 chwkai收录 (还有1人收录) 复制到我的网摘
在企业开发里,经常遇到的一个问题是需要做Distributed Transactions。一般推荐的做法是做成ServicedComponent,参考

Transaction Control
Writing Serviced Components

这种做法有几个问题,该组件以及所依赖组件必须是Strong-Named的,在通常的情形下(譬如Web Application里),我们需要手动注册组件。但这样,如果我们改动组件的话,需要停止服务,注销组件,然后重新注册组件。另外,这Transaction是declarative和automatic的,无法用编码精确控制 Transaction,而且declaration是在类的级别上的,无法在方法层次做 Transaction。其原因是,ServicedComponent是基于早期COM+的服务架构之上的,Transactional Context是与Object(对象)密切结合在一起的。

http://blog.joycode.com/saucer/archive/2005/01/05/42381.aspx
事务处理 基本要点 - zhuweisky的专栏点击:85
 分类:dotnet; IT技术资料集 时间:2006-5-23 22:00:33 chwkai收录 (还有1人收录) 复制到我的网摘
IDbTransaction不支持跨数据库的事务,如果需要使用跨数据库的事务请使用COM
http://blog.csdn.net/zhuweisky/archive/2005/07/20/429728.aspx
如何在 Visual C# 组件中使用 COM 事务点击:72
 分类:dotnet; IT技术资料集; EIP 时间:2006-5-23 17:36:02 chwkai收录 复制到我的网摘
如何实现跨数据库和服务器的事务,yes
http://support.microsoft.com/default.aspx?scid=kb;zh-cn;816141
K. Scott Allen : Windows Workflow Reading List点击:79
 分类:dotnet; IT技术资料集 时间:2006-5-19 14:35:38 chwkai收录 复制到我的网摘
Windows Workflow is a part of the next-generation APIs from Microsoft collectively known as WinFX. WinFX also includes Windows Communication Foundation and Windows Presentation Foundation. From 50,000 feet away, WinWF consists of a visual workflow designer that plugs into Visual Studio, and a runtime to execute workflow instances.
http://odetocode.com/Blogs/scott/archive/2006/04/26/3429.aspx
Inside IIS&ASP.NET点击:61
 分类:dotnet; IT技术资料集 时间:2006-5-19 0:51:39 chwkai收录 (还有2人收录) 复制到我的网摘
g'd to have a glance at the inside of IIS and Asp.Net
Tools like ASP.NET greatly simplify the development of a complex Web application. Although this is a great thing for general productivity, it can also keep you from understanding the fundamental communications between your Web server and your ASP.NET application code. Furthermore, there will be times when you need to butt-in and intercept HTTP requests, which requires a greater understanding of the process of communication between your Web server of choice, and ASP.NET.

This article explains how IIS and ASP.NET communicate, and describes some techniques for intercepting some of this communication. I’ll review how ASP.NET is configured to handle requests, and how applications and Web services are handled by default.

Then I’ll discuss how you might butt-in to those requests with HTTP handlers, handler factories and modules. You’ll see how they function individually and together through a series of examples.
http://www.theserverside.net/tt/articles/showarticle.tss?id=IIS_ASP
URL as UI (Alertbox March 1999)点击:60
 分类:dotnet; IT技术资料集 时间:2006-5-18 22:51:34 chwkai收录 (还有2人收录) 复制到我的网摘
结构化的Url更加好记和短小,turn to URL ReWritting
# a domain name that is easy to remember and easy to spell
# short URLs
# easy-to-type URLs
# URLs that visualize the site structure
# URLs that are "hackable" to allow users to move to higher levels of the information architecture by hacking off the end of the URL
# persistent URLs that don't change
http://www.useit.com/alertbox/990321.html
HOW TO: Create Custom Error Reporting Pages in ASP.NET by Using Visual C# .NET点击:67
 分类:dotnet; IT技术资料集 时间:2006-5-18 22:41:36 chwkai收录 复制到我的网摘
定义自定义异常页面的四种方法:
Page_Error/Application_Error/HttpApplication.Error/Web.config+customError
http://support.microsoft.com/default.aspx?scid=kb;en-us;Q306355&ID=kb;en-us;Q306355&SD=MSDN
Extending ASP.NET点击:67
 分类:dotnet; IT技术资料集 时间:2006-5-18 20:37:26 chwkai收录 复制到我的网摘
Learn how to provide templated URL driven content with HTTP Handlers, using three real-world scenarios presented in this article
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html/urlrewriting.asp
Extending ASP.NET点击:60
 分类:dotnet; IT技术资料集 时间:2006-5-18 20:35:42 chwkai收录 复制到我的网摘
Learn how to provide templated URL driven content with HTTP Handlers, using three real-world scenarios presented in this article
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html/httphandl.asp
一千个 使用VS05 的理由 (20-422)点击:87
 分类:dotnet; EIP 时间:2006-5-17 11:44:18 chwkai收录 复制到我的网摘
ms在vs2005的ide做了很大的改进,让我们开发起来更快乐和简便。
http://blog.joycode.com/zhanbos/archive/2006/04/20/74902.aspx
Visual Studio 400 Differences点击:41
 分类:dotnet 时间:2006-5-17 11:40:51 chwkai收录 复制到我的网摘
joke, 使用vs2005的400个理由,包括微软员工工作场景,挺爽的
http://www.400plusdifferences.com/
说说大型高并发高负载网站的系统架构点击:72
 分类:dotnet; IT技术资料集 时间:2006-5-16 14:20:40 chwkai收录 (还有33人收录) 复制到我的网摘
http://blog.csdn.net/fww80/archive/2006/04/28/695293.aspx
Web Services and Other Distributed Technologies: Service Station: All About ASMX 2.0, WSE 3.0, and WCF点击:88
 分类:dotnet; IT技术资料集; EIP 时间:2006-5-14 16:10:01 chwkai收录 复制到我的网摘
The release of the Microsoft?.NET Framework 2.0 reshapes the Web services landscape in several interesting, and perhaps confusing, ways. So this month I'm going to field some of the most common questions related to ASP.NET Web Services (ASMX) 2.0, Web Services Enhancements (WSE) 3.0, and Windows?Communication Foundation (WCF), which is part of WinFX?
http://msdn.microsoft.com/webservices/default.aspx?pull=/msdnmag/issues/06/01/servicestation/default...
Understanding Enterprise Services (COM ) in .NET (.NET Development (General) Technical Articles)点击:64
 分类:dotnet; IT技术资料集; EIP 时间:2006-5-14 16:08:38 chwkai收录 复制到我的网摘
Provides technical details behind the integration of Microsoft .NET and COM services and describes the services available to managed code. (26 printed pages)
http://msdn.microsoft.com/library/en-us/dndotnet/html/entserv.asp?frame=true
构建安全的 ASP.NET 应用程序点击:69
 分类:dotnet; IT技术资料集; EIP 时间:2006-5-13 23:44:23 chwkai收录 (还有2人收录) 复制到我的网摘
推荐作为的权限设计参考
http://www.microsoft.com/china/MSDN/library/archives/library/securityguide/
如何工作(asp.net管道处理)?点击:17
 分类:dotnet; IT技术资料集 时间:2006-5-13 12:50:39 chwkai收录 复制到我的网摘
本单元阐述了《构建安全的 ASP.NET 应用程序》指南中包含的多个关键概念的实际工作原理。其中包括 IIS 和 ASP.NET 处理以及 ASP.NET 管道处理。
http://www.microsoft.com/china/msdn/library/architecture/architecture/architecturetopic/BuildSucApp/...
Using HTTP Modules and Handlers to Create Pluggable ASP.NET Components (ASP.NET Technical Articles)点击:21
 分类:dotnet; IT技术资料集 时间:2006-5-13 12:49:29 chwkai收录 复制到我的网摘
In this article, Scott Mitchell and Atif Aziz show how you can use HTTP modules and handlers to add error logging to your ASP.NET applications
http://msdn.microsoft.com/library/en-us/dnaspp/html/elmah.asp?frame=true
在 ASP.NET 中使用 HTTP 模块实现 Intercepting Filter点击:29
 分类:dotnet; IT技术资料集 时间:2006-5-13 12:24:09 chwkai收录 复制到我的网摘
Intercepting Filter (截取筛选器)模式的 ASP.NET 实现是该模式中所描述的事件驱动型筛选器的一个例子。ASP.NET 提供了应用程序可以在请求处理期间钩挂的一系列事件。这些事件保证了请求的状态。各个筛选器都是通过一个 HTTP 模块实现的。HTTP 模块是一个实现 IHttpModule 接口并确定应该何时调用筛选器的类。ASP.NET 包括一组可由应用程序使用的 HTTP 模块。例如,SessionStateModule 由 ASP.NET 提供,以便向应用程序提供会话状态服务。您可以创建自己的自定义 HTTP 模块,以便根据应用程序的需要筛选请求或响应。
编写自定义 HTTP 模块的一般过程是:
?实现 IHttpModule 接口。
?处理 Init 方法并注册到您需要的事件。
?处理事件。
?如果必须清理,也可以选择实现 Dispose 方法。
?在 web.config 文件中注册模块。
http://www.microsoft.com/china/MSDN/library/architecture/patterns/esp/ImpInterCEptingFilterInASP.msp...
Forms身份验证点击:22
 分类:dotnet; IT技术资料集 时间:2006-5-13 12:01:24 chwkai收录 复制到我的网摘
Asp.net的身份验证有有三种,分别是"Windows | Forms | Passport",其中又以Forms验证用的最多,也最灵活。
Forms 验证方式对基于用户的验证授权提供了很好的支持,可以通过一个登录页面验证用户的身份,将此用户的身份发回到客户端的Cookie,之后此用户再访问这个web应用就会连同这个身份Cookie一起发送到服务端。服务端上的授权设置就可以根据不同目录对不同用户的访问授权进行控制了。

问题来了,在实际是用中我们往往需要的是基于角色,或者说基于用户组的验证和授权。对一个网站来说,一般的验证授权的模式应该是这样的:根据实际需求把用户分成不同的身份,就是角色,或者说是用户组,验证过程不但要验证这个用户本身的身份,还要验证它是属于哪个角色的。而访问授权是根据角色来设置的,某些角色可以访问哪些资源,不可以访问哪些资源等等。要是基于用户来授权访问将会是个很不实际的做法,用户有很多,还可能随时的增减,不可能在配置文件中随时的为不断增加的新用户去增加访问授权的。

http://sunsjorlin.cnblogs.com/archive/2005/11/18/279542.html
Community Server专题四:HttpHandler点击:50
 分类:dotnet; IT技术资料集 时间:2006-5-13 12:00:34 chwkai收录 (还有1人收录) 复制到我的网摘
Community Server专题四:HttpHandler
http://ugoer.cnblogs.com/archive/2005/09/07/231676.html
NET 1.1中预编译ASP.NET页面实现原理浅析 [1] 自动预编译机制浅析点击:21
 分类:dotnet; IT技术资料集 时间:2006-5-13 11:59:59 chwkai收录 复制到我的网摘
MS在发布ASP.NET时的一大功能特性是,与ASP和PHP等脚本语言不同,ASP.NET实际上是一种编译型的快速网页开发环境。这使得ASP.NET在具有开发和修改的简便性的同时,不会负担效率方面的损失。实现上ASP.NET与JSP的思路类似,引擎在第一次使用一个页面之前,会将之编译成一个类,自动生成Assembly并载入执行。
而通过《在WinForm程序中嵌入ASP.NET》一文中我们可以了解到,ASP.NET引擎实际上是可以无需通过IIS等Web服务器调用而被使用的,这就使得手工预编译ASP.NET页面成为可能。实际上这个需求是普遍存在的,早在ASP时代就层有第三方产品支持将ASP页面编译成二进制程序,以提高执行效率和保障代码安全性,而将伴随Whidbey发布的ASP.NET 2.0更是直接内置了预编译ASP.NET页面的功能。
http://dudu.cnblogs.com/articles/248963.html
构建安全的 ASP.NET 应用程序点击:45
 分类:dotnet; IT技术资料集 时间:2006-5-13 11:59:21 chwkai收录 复制到我的网摘
本章提供用于构建安全的 ASP.NET Web 应用程序的指南和建议。本章提供的大多数指南和建议同样适用于开发 ASP.NET Web 服务和由 ASP.NET 驻留的 .NET Remoting 对象。
http://www.microsoft.com/china/MSDN/library/archives/library/securityguide/Chapter08.asp
WindowsMobile 应用开发大赛点击:11
 分类:dotnet 时间:2006-4-7 13:21:31 chwkai收录 复制到我的网摘
rocks~
http://www.winbile.net/winbilebaoming/winbile_contest_kaifaziyuan.asp
博客园 - 听棠.NET - 系统性能提升之道--内存镜像表点击:36
 分类:dotnet; IT技术资料集 时间:2006-3-21 19:14:13 chwkai收录 (还有3人收录) 复制到我的网摘
对于一个系统,我们在设计开发时,不得不考虑系统的性能问题,硬件的提速可以缓减系统日益增长的消耗,但我们也不能肆无忌惮的扩展系统而不考虑性能的提高,我们应该重视资源的有限性。
http://tintown.cnblogs.com/archive/2005/03/23/124395.aspx
博客园 - 享受代码,享受人生 - C# 3.0 Orcas 简介点击:17
 分类:dotnet; IT技术资料集 时间:2006-3-21 19:13:39 chwkai收录 复制到我的网摘
局部变量的声明变得非常方便, 编译器会根据上下文自动推导出变量的类型.这个功能在3.0中被广泛使用.
http://idior.cnblogs.com/articles/237089.html
nhibernate入门系列: many-to-many映射点击:20
 分类:dotnet; IT技术资料集 时间:2006-3-21 16:36:58 chwkai收录 复制到我的网摘
张老三的nh入门系列,其中的讨论很值得注意
http://www.narchitecture.net/Articles/ArticleDetails.aspx?id=3s8tgj
页码: [1 2 3 4 5 6 共6页、150项网摘

使用帮助 |  如何保存网摘 |  给365Key提建议 |  媒体报道 |  站长推广须知
Copyright (C) 2004 365Key.com--天天网摘 All Rights Reserved