> Old vb.net asp.net 1.0 vb.net website. We don't have sources, nor can
> I compile it.
[quoted text clipped - 15 lines]
>
> Thanks for any help or information!
On Mar 18, 11:35 am, bruce barker
<brucebar...@discussions.microsoft.com> wrote:
> see the @Assembly page directive
What I've have done in the past.. and it's not working for some
reason...
is drop my vb.net 2.0 class library DLL in the BIN directory of the
old project.
that class has a namespace.
then in my inline code:
<%@ Import Namespace="JCP"%>
and in my code
Dim xx as new JCP.Myclass(")
But this gives me error:
Type 'JCP.Myclass' is not defined.
I'm not sure how I can use the @Assembly directive? Also, do I need to
worry that my class was compiled in 2.0 and that this server only has
1.0 .NET framework installed?
my namespace is JCP
my class is MyClass
the file is MyClass.DLL
It's compiled in 2.0
I'm attempting to access it from 1.0 (which sounds like might be a
problem anyway )
Thank you.