Help Need with Library Files

  • Thread starter Thread starter Arvind P Rangan
  • Start date Start date
A

Arvind P Rangan

Hi,

I have created a class library which i need to use in my ASPX file.

when i say:
Dim mylib As TestLib = new TestLib()

it gives me an error saying type required.

How do we use a class library ?
Pls give me some example if you got.

Thanks
Arvind P Rangan
 
Hi all,
I got the answer to this.
As my Class Library is collection of classes i had not mentioned which class i was referring so it was giving me error.

So when i mentioned:
dim testlib as testlib.testing = new testlib.testing()

its working fine.
Thanks anyway.
Arvind.
Hi,

I have created a class library which i need to use in my ASPX file.

when i say:
Dim mylib As TestLib = new TestLib()

it gives me an error saying type required.

How do we use a class library ?
Pls give me some example if you got.

Thanks
Arvind P Rangan
 
Back
Top