What does AspCompat="true" mean and when should I use it?

本文探讨了从ASP迁移到ASPX页面时AspCompat的作用及其配置方法。AspCompat设置为true可以提高处理Apartment-threaded COM对象的性能,并允许COM组件访问ASP内置对象。
AspCompat is an aid in migrating ASP pages to ASPX pages. 
It defaults to false but should be set to true in any ASPX 
file that creates apartment-threaded COM objects--that is, 
COM objects registered ThreadingModel=Apartment.

That includes all COM objects written with  Visual Basic 
6.0. AspCompat should also be set to true (regardless of 
threading  model)  if the page creates COM objects that 
access intrinsic ASP objects such as Request and Response. 
The following directive sets AspCompat to true:

<%@ Page AspCompat="true" %>  
Setting AspCompat to true does two things. First, it makes 
intrinsic ASP objects available      to the COM components 
by placing unmanaged wrappers around the equivalent ASP.NET 
objects. 

Second, it improves the performance of calls that the page 
places to apartment- threaded COM objects by ensuring that 
the page (actually, the thread that processes the  request 
for the page) and the COM objects it creates share an 
apartment. 

AspCompat="true" forces ASP.NET request threads into single-
threaded apartments (STAs). If those threads create COM 
objects marked ThreadingModel=Apartment, then the objects 
are created in the same STAs as the threads that created 
them. Without AspCompat="true," request threads run in a 
multithreaded apartment (MTA) and each call to an STA-based 
COM object incurs a performance hit when it's  marshaled 
across apartment boundaries.

Do not set AspCompat to true if your page uses no COM 
objects or if it uses COM objects that don't access ASP 
intrinsic objects and that are registered 
ThreadingModel=Free or  ThreadingModel=Both.

转载于:https://www.cnblogs.com/zhangqs008/archive/2012/08/28/2802203.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值