using in aspx.cs

  • Thread starter Thread starter muz dogru
  • Start date Start date
M

muz dogru

I have a C# application which I use in different other projects, which
is no problem. Now I have a project in which I have a .aspx.cs file
and a .aspx file. Here I have the problem taht I cannot call any
external (from my other project) classes from my .aspx.cs file!

I have entered a reference in Visual Studio .NET to the old project,
when I enter 'using com.xyz.myDLL', it seems find, just as soon as I
call the .aspx file with my browser, it does not find 'com.xyz.myDLL'.
Do I need to make any other configurations? Any ideas? Thanks a lot!
 
I have entered a reference in Visual Studio .NET to the old project,
when I enter 'using com.xyz.myDLL', it seems find, just as soon as I
call the .aspx file with my browser, it does not find 'com.xyz.myDLL'.
Do I need to make any other configurations? Any ideas? Thanks a lot!

Hi Muz,

Did you had the DLL to your /bin directory?

Joe
 
hi joe,

yes i have the dll in my bin directory. the compiler does not give an
error in visual studio, but the browser does not find the dll. do i have
to add something to the aspx file so that it is placed in the same
namespace? how?

thanks
 
well, i had to configure the IIS!!! the application has to be set as an
own app... thanks anyway
 
Back
Top