Link to home
Start Free TrialLog in
Avatar of nesifa
nesifa

asked on

Response object in Visual Basic DLL running under MTS

Hi everyone.
I need to make a reference to response object in VB DLL running under MTS. All kind of response.write I would like to impliment in  VB DLL. Once I am done I would like to send the content of response object into the ASP page.
Any Idea.
Anu little code will be very valuable
Thank You
Nesifa
Avatar of morgan_peat
morgan_peat

The old way to do it was to have 2 routines:
OnStartPage()
OnEndPage()
in your VB class.

This has been superceeded (sp?) by the MTS object context.

Have a look at:
http://msdn.microsoft.com/library/periodic/period98/vb.htm
"Creating Internet Applications with Visual Basic"
ASKER CERTIFIED SOLUTION
Avatar of uschmitz
uschmitz

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of nesifa

ASKER

Very good answer