How to create object of a class which is outside of App_Code folderin Asp.net 2.0 using C#.??

  • Thread starter Thread starter chandan
  • Start date Start date
C

chandan

Hi friends,

I wanted to create object of the class which was outside of App_Code
folder , but i am not able to create the instance of that class.. can
we do that into Asp.Net 2.0 , C#

How to create object of a class which is outside of App_Code folder in
Asp.net 2.0 using C#.

thanks in advance.. waiting for your valuable comments.

Chandan
 
if using visual studio, add a reference to the assembly containing the
class, if notepad, manually add a reference in web.config.

-- bruce (sqlwork.com)
 
Back
Top