Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MTS/COM+ usage??

Status
Not open for further replies.

usp004

ISP
Jul 10, 2000
46
0
0
US
2 COM+ questions:

1) Does the following line of code need to be in an ASP page to use COM+:
<%@ TRANSACTION = Supported %>

2) Do you HAVE to use the Object Context in the vb dll in order to use the dll within COM+?

Thanks. [sig][/sig]
 
You will only have to include <%@ TRANSACTION = Supported %> in your ASP if it is going to do some kind of Database Updating or Inserting, by default TRANSACTION is set to MTSNonTransaction(al) which means that your ASP is either querying or doing nothing with a Database, if this is the case then you don't need to put anything within your ASP. [sig][/sig]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top