Hi:
I made one classlibrary libsum in vb.net,In that there is one class
clsSum.In that i have written on simple function Add.I make dll
libsum.dll.When i am using regsvr32 libsum.dll ,then it is telling libsum.dll
loaded,
DllRegisterserver entry point not found,the file can not be registered.I
guess that does not make any difference.Now i made a web application WebSum
on localhost.I added localhost as trusted sites in Interner
explorer setting.Now i define libsum.dll as object in aspx page like this
<OBJECT ID="VSTwain1" WIDTH=1 HEIGHT=1
CLASSID="
http://localhost/websum/libsum.dll"
CODEBASE="
http://localhost/websum/libsum.dll">
</OBJECT>
I placed libsum.dll in root folder of the websum application.
Now in javascript function.
In alert(VSTwain1)
i am getting [object]
But when i am accessing VSTwain1.Add method
Then it is giving eror message object does not support this property or
method.
Note:
websum is web based application
libsum.dll is class library with project name as libsum and class name as
clsSum
and function as Add()
I hope u have understood the problem.
Please tell me the solution
Regards
Indi