OK I though I was really clear I *know* how to do basic native DLL calls.
ASP.NET doesn't allow DllImport and can only call .Net code directly.
THAT'S the problem.
I appreciate your response, but please read the question in it's entirety
before answering.
(I knew someone would do this <g>)
Let me see if I have it right.
DLL in question is C.
You need to call it from ASP.NET.
If so the article is correct. You may have to wrap the DLL in a .NET
library, but it should work. WIth ASP.NET it should also be able to be
called from a ASP.NET web application instead of a ASP.NET web site. If it
does not work, wrap it.
I see no reason to wrap in .NET and then create a COM callable wrapper and
then call that. It creates something twice removed instead of something once
removed.
Am I still missing something?

Signature
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA
Subscribe to my blog
http://gregorybeamer.spaces.live.com/lists/feed.rss
or just read it:
http://gregorybeamer.spaces.live.com/
*************************************************
| Think outside the box!
*************************************************
> OK I though I was really clear I *know* how to do basic native DLL calls.
> ASP.NET doesn't allow DllImport and can only call .Net code directly.
[quoted text clipped - 27 lines]
>>>
>>> Is there a better way? Or a way to avoid COM altogether?