Okay, Mike. What you have is not a "Control" - a Control in ASP.Net is a
class which renders UI. It sounds like what you've got is a Class Library.
If so, all you need to do is create a reference to the DLL, and use it
like
any other .Net DLL (Such as the built-in System.DLL, System.Web.DLL, etc).
--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
Mike Street said:
Kevin,
I've got a .NET dll which I would normally use within a VB.NET application.
It provides me with a set of classes and functions I can use to connect
to a
back-end server. I'd like to be able to make use of those same classes
and
functions in an ASP.NET page.
In an ASP page I would use the CreateObject() function to make use of the
classes in the equivalent COM object.
Mike
Kevin Spencer said:
Could you ask that in more understandable terms, please?
What is "a dll user control?" And what do you mean by "the best way to
make
se of the function i[n] a dll user control"?
The best way to make use of a hammer is to hammer nails with it. The best
way to make use of any tool is to use it for what it is designed for.
--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
I'm looking for the best way to make se of the function is a dll user
control in an ASP.NET page. I've been unable to find anything specific to
demonstrate how this can be achieved.
Mike