473,409 Members | 1,934 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,409 software developers and data experts.

Best Way To Break Up Large ASP.NET Apps

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?
Nov 18 '05 #1
4 1440
Creating a middle tier object model certainly is time consuming, but these
days it's considered a must for most large web sites, especially if they
need to be scalable or you have big plans for growth in the future.
Here is some suggested reading for you:
http://www.lhotka.net/ArticleIndex.a...ea=CSLA%20.NET

Other useful tidbit of information for you is that you don't have to compile
your web apps into a single DLL. By using the command line compiler you can
split you application into an unlimited number of DLLs.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net

"Chris" <cm**@walshgroup.com> wrote in message
news:44**************************@posting.google.c om...
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?

Nov 18 '05 #2
WJ
One of the option(s) is to sub-web.

John
Nov 18 '05 #3
Steve,

Thanks for the reply! Can you point me in the direction of where I
can find some examples of breaking a large DLL into smaller ones via
the command line compiler?

If I were to break the pap into, say 10 DLLs, would I be able to
update one of these DLLs on the fly on the production server just by
copying up the new DLL, or would I need to run something to register
or link the new (updated) DLL?

Thanks a ton!

Chris
"Steve C. Orr [MVP, MCSD]" <St***@Orr.net> wrote in message news:<u4*************@tk2msftngp13.phx.gbl>...
Creating a middle tier object model certainly is time consuming, but these
days it's considered a must for most large web sites, especially if they
need to be scalable or you have big plans for growth in the future.
Here is some suggested reading for you:
http://www.lhotka.net/ArticleIndex.a...ea=CSLA%20.NET

Other useful tidbit of information for you is that you don't have to compile
your web apps into a single DLL. By using the command line compiler you can
split you application into an unlimited number of DLLs.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net

Nov 18 '05 #4
Steve,

Never mind... I found some articles on MSDN that deal with it and was
able to do exactly what I had hoped.

Thanks for pointing me in the right direction!

Chris

cm**@walshgroup.com (Chris) wrote in message news:<44************************@posting.google.co m>...
Steve,

Thanks for the reply! Can you point me in the direction of where I
can find some examples of breaking a large DLL into smaller ones via
the command line compiler?

If I were to break the pap into, say 10 DLLs, would I be able to
update one of these DLLs on the fly on the production server just by
copying up the new DLL, or would I need to run something to register
or link the new (updated) DLL?

Thanks a ton!

Chris
"Steve C. Orr [MVP, MCSD]" <St***@Orr.net> wrote in message news:<u4*************@tk2msftngp13.phx.gbl>...
Creating a middle tier object model certainly is time consuming, but these
days it's considered a must for most large web sites, especially if they
need to be scalable or you have big plans for growth in the future.
Here is some suggested reading for you:
http://www.lhotka.net/ArticleIndex.a...ea=CSLA%20.NET

Other useful tidbit of information for you is that you don't have to compile
your web apps into a single DLL. By using the command line compiler you can
split you application into an unlimited number of DLLs.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net

Nov 18 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
by: limor | last post by:
Hi, I am considering using Python in a new testing tool application we intend to build for out product. I must get references before starting develope in this language , since although lots of...
2
by: Hugh McLaughlin | last post by:
Hello Everyone and thanks for your help in advance. I have read a great deal about code reuse and the development of the three-tier application, but am somewhat confused on some issues and am...
11
by: DrUg13 | last post by:
In java, this seems so easy. You need a new object Object test = new Object() gives me exactly what I want. could someone please help me understand the different ways to do the same thing in...
136
by: Matt Kruse | last post by:
http://www.JavascriptToolbox.com/bestpractices/ I started writing this up as a guide for some people who were looking for general tips on how to do things the 'right way' with Javascript. Their...
1
by: Andy Fish | last post by:
Hi, I am about to commence the design of what will turn out to be a fairly large asp.net web app, and I am looking for any good advice and resources (books, web pages) concerning how best to...
16
by: Rex | last post by:
Hi All - I have a question that I think MIGHT be of interest to a number of us developers. I am somewhat new to VIsual Studio 2005 but not new to VB. I am looking for ideas about quick and...
4
by: =?Utf-8?B?VzFsZDBuZTc0?= | last post by:
When one architects a new project one of the first steps in the decision is to decide on the layers. (In my opinion anyway) One architecture that I have used before is to go solid OO and create...
20
by: Joe | last post by:
Is any one charting packing considered to be the "best"? We've used ChartFX but wasn't too happy about the way data had to be populated along with some other issues which slip my mind right now and...
7
by: =?Utf-8?B?TW9iaWxlTWFu?= | last post by:
Hello everyone: I am looking for everyone's thoughts on moving large amounts (actually, not very large, but large enough that I'm throwing exceptions using the default configurations). We're...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.