Hello
I am beginer in VB and ActiveX for ASP.

I wrote ActiveX DLL component for my ASP page.

This component is good working on this ASP page but only for his own data.
When I try to enter some data from ASP page / for example: dbname / - my
component is suspended without results.
Where is my error?


Declaration in component module:


public property let dbname(p_dbname as string)
r_dbname = p_dbname
End property




Declaration in ASP page:

Set obiekt = Server.CreateObject ( "MojActiveX.IsisComp" )

obiekt.dbname="d:/iis/pages/sklep/baza01/baza01"

obiekt.dbopen

What is wrong?
When I set this dbase name directly in in my component code and delete 'obiekt.dbname' line
from this ASP page, my ASP page is working correctly.

Can somebody help mi ?

Zbyszek