How to restructure ASP.NET application

Posted by Ram on Stack Overflow See other posts from Stack Overflow or by Ram
Published on 2010-06-15T06:58:20Z Indexed on 2010/06/15 7:02 UTC
Read the original article Hit count: 168

Filed under:
|
|

Hi,

I have a sample ASP.NET application. The appliaction was developed as POC and not following any design and architectural standards.

Now I want to restructure the application. I can see some of the business logic and controls can be reused in future, such as login control.

I have two options for restructuring

  1. I create a Utility DLL that will contain all such resusable code and another DLL that will contain all controls that can be reused.

  2. I will create a separeate DLL for each type which can be reused e.g. Login control.

Which option is more better. Although I feel option 1 is good, but I need suggestion from experts.

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET