Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
What is the use of <%@ page aspcompat=true %> attribute
What is the use of <%@ page aspcompat=true %> attribute ?
✍: Guest
This attribute works like a compatibility option. As mentioned before ASP worked in STA model and ASP.NET works in MTA model, but what if your ASP.NET application is using a VB COM component. In order that VB COM runs properly in ASP.NET threading model we have to set attribute. After defining the ASPCOMPAT directive attribute ASP.NET pages runs in STA model thus building the compatibility between ASP.NET and old COM components that does not support MTA model.
2007-10-24, 4986👍, 0💬
Popular Posts:
How To Fade Image Edges to Background Colors? - PSP Tutorials - Fading Images to Background Colors w...
What’ is the sequence in which ASP.NET events are processed ? Following is the sequence in which the...
How can I enable session tracking for JSP pages if the browser has disabled cookies? We know that se...
If XML does not have closing tag will it work? No, every tag in XML which is opened should have a cl...
What is difference between SITP and UTP in testing ? UTP (Unit Test Plan) are done at smallest unit ...