C
Chris
Where I work, we basically have 1 large ASP.NET application that we
work on.
This is compiled into one big DLL.
I think it would be a good idea to somehow break up the project, so
that if I am in the middle of development on some sub project, I don't
have to push up that code to fix a bug in another part of the
application.
I was thinking of creating multiple asp.net applications, or creating
class libraries to house the programming logic, instead of using the
code behind files.
The problem with the class library is that I like to use the designer,
which (as I stated in a previous post) I don't think you can take
advantage of if you put all your logic in a class library. If all
your code is in a class library and you drag a button onto the form,
it won't add it to your class library file, know what I mean?
Creating a bunch of applications has its own issues as well. For
example I haven't found a way to share session data across
applications (I have figured out how to make a single login for
multiple apps).
What is the best way to go about this?
What path would you suggest taking?
work on.
This is compiled into one big DLL.
I think it would be a good idea to somehow break up the project, so
that if I am in the middle of development on some sub project, I don't
have to push up that code to fix a bug in another part of the
application.
I was thinking of creating multiple asp.net applications, or creating
class libraries to house the programming logic, instead of using the
code behind files.
The problem with the class library is that I like to use the designer,
which (as I stated in a previous post) I don't think you can take
advantage of if you put all your logic in a class library. If all
your code is in a class library and you drag a button onto the form,
it won't add it to your class library file, know what I mean?
Creating a bunch of applications has its own issues as well. For
example I haven't found a way to share session data across
applications (I have figured out how to make a single login for
multiple apps).
What is the best way to go about this?
What path would you suggest taking?