Calling Unmanaged DLL from classic asp in Windows CE -


I have seen while pointing out that managed DLLs can not be called in the classic ASP code in Windows CE, but unmanaged What about

More specifically, it tells how to call a DLL from ASP, but the first step is to register DLL, and I could not find any way to do this in CE.

Is it possible to call an unmanaged DLL call from classic ASP in Windows CE? If so, how can I register and say it?

[edit] By the way, I am using Windows CE 2013

You can not call "plain" DLL A DLL which is just exporting some functions means that you can not call any Windows CE API inside your ASP page, for example. However you can use the COM object (Server.CreateObject statement) and those objects must be applied in the original code and therefore they can access all the OS APIs. You can use ATLs to simplify the development of com objects (I said, simplifying, making it not easy!). There is no way to implement an object using .NET. Net CF runtime can not be loaded inside a native exe and the HTTP server is running in the competition of a native EXE.


Comments

Popular posts from this blog

import - Python ImportError: No module named wmi -

Editing Python Class in Shell and SQLAlchemy -

c# - MySQL Parameterized Select Query joining tables issue -