I created a dll(which will be on client ) which has a class written in VB with getters returning string.
I know the code to access this class in client side is by using Object tag And referring the classid in HTML
But for this class to be identified by my HTML it should be registered in the registry editor.
How can i Registor in the Regsitory Editor HKEY_LOCAL_MACHINE>Software>Classes>CLSID so that i can invoke it using Object Tag in HTML to call the methods in the class?
Is my understanding of the solution,wrong?
You must register your DLL using the RegAsm.exe utility.
This article explains details, and this one gives an extensive example.