Reputation: 1269
I have a dll file and i need to call a method in the dll and return some value.
Before i have used a VB script and called it from a html file that runs only on IE.
Now i need to call the dll directly from HTML5 without using any VBScript or Javascript.
Which tag can achieve this and that can be run in almost all browsers.
Please help me.
Thanks in advance.
Upvotes: 0
Views: 2166
Reputation: 11962
There is an <embed>
Tag, but it's not for DLLs. In fact there is no tag which allows you to call DLLs at all.
So you should step away from the idea to do your processing on the client-side and just move it to the backend. Create a ASP.NET-Service if you have to use your DLL. You can even use PHP5 (using COM
functions) if it's running on a Windows server.
Upvotes: 1