C
Chris Smedley
I am sure this is a simple question.
I have a legacy VB6 COM Object that collects information on a local PC
device. I want to be able to have it be invoked from an ASP Page. I have
Done the following
Dim Withevents MyCom as MYCom.XYZ
Created a Sub that collected MYCom's event. During debugging I can see that
the method is being invoked properly and the debugger will stop within the
my event handler.
A examination of the returned data within the debugger is fine, however, I
cannot do an Response.Redirect or Server.Transfer within that same event
handler.
What I basically want to do is when the handler is invoked to store the
result data as a session variable and then move to another page. this next
page will display the results.
However as I note the Response.Redirect statement does not seem to do
anything.
What am I missing here?
Thanks for your time
I have a legacy VB6 COM Object that collects information on a local PC
device. I want to be able to have it be invoked from an ASP Page. I have
Done the following
Dim Withevents MyCom as MYCom.XYZ
Created a Sub that collected MYCom's event. During debugging I can see that
the method is being invoked properly and the debugger will stop within the
my event handler.
A examination of the returned data within the debugger is fine, however, I
cannot do an Response.Redirect or Server.Transfer within that same event
handler.
What I basically want to do is when the handler is invoked to store the
result data as a session variable and then move to another page. this next
page will display the results.
However as I note the Response.Redirect statement does not seem to do
anything.
What am I missing here?
Thanks for your time