I need to specify common files for my ASP.net projects

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

is there a way that I can link to my common *.cs files in a ASP.net
application for Visual Studio 2003?
 
Create a class library (.dll) out of your files and then add a reference to
that DLL in your web project.
 
Smilly,

You can compile your .cs files as a DLL and add a reference to them OR
simply add the .cs files to your ASP.NET project.

Telmo Sampaio
MCT
 
Thanx for all your help

Telmo Sampaio said:
Smilly,

You can compile your .cs files as a DLL and add a reference to them OR
simply add the .cs files to your ASP.NET project.

Telmo Sampaio
MCT
 
Back
Top