Agus
Agus

Reputation: 1624

How to consume native-code(windows) from HTML5

I am quite new in HTML5 and I am looking for docs and examples in relation to access to native code from HTML5 app. Basically, I have a compile dll that need to be access by HTML5 code.

Upvotes: 1

Views: 447

Answers (2)

There is no way to do this directly from HTML5. HTML5 is a mark-up language, used to denote structure and content in a semantically correct way. To access anything programmatically from it, you need to use an additional language. JavaScript is used client side, where as a server-side language will need to be used to access something like a dll file.

tl;dr -- This is not possible using only HTML5.

Upvotes: 1

SLaks
SLaks

Reputation: 888185

That's completely impossible.

Sorry.

Upvotes: 6

Related Questions