Never mind! I missed the line in the Deactivate doc that says the object
deactivates after any method calls setComplete or setAbort....
- Paul
Quote:
> I'm trying to use ObjectContext to get the ASP built-in objects as
described
> in "Developing a Visual Basic Component for IIS/MTS".
> Question: Should the ObjectControl_Activate Sub fire every time I
reference
> the object?
> Situation:
> Set oObject = Server.CreateObject("SomeObject.someClass")
> oObject.setProps "A", "B", "C"
> lResult = oObject.save()
> Set oObject = Nothing
> In the case above I'm seeing Activate fire twice? Once when I call
setProps
> and once when I call save. I was expecting it to be called once for the
> whole session... What am I missing here?
> - Paul