Click here to Skip to main content
16,012,468 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I would like to get some really good points which are need to take into account for maintaining an asp.net application.

Can anybody help me in some good posts which has some good points relating to things to be taken care for an application in terms of maintaining the application.


Thanks,
Vijay
Posted
Updated 30-Nov-10 23:54pm
v2

This should be posted in one of the forums instead of here in questions/answers. It needs a viable threaded discussion model, and questions/answers does not provide that.

Beyond that, I posted an article here a few years ago that discusses being a programmer. You may find it somewhat useful as this topic is touched on. Here's a link:

Being a Programmer[^]
 
Share this answer
 
v2
You are asking about good points about maintaining an asp.net application. The actual maintainability of an application is dependent on how it is designed and built. If that has failed, you can only salvage as good as you can.

Try to spot redundant code and make methods or classes for that. This will shorten the actual code that must be maintained and makes changes to specific functionality easier because it can be done by changing it only once.

But before you do any coding, familiarize yourself with the application and try to fully understand what it is meant to do. This makes it more easy to understand the code and understand hacks even though they are as ugly as hell. At this point, you just need to look beyond your own knowledge and try to understand the coding methods someone used by the one before you. Sometimes it will give insight about new methods and ways of coding. Most of the time it's just crying about the pore quality but with an occasional laugh about some ridiculous implementation. (I could make a site with some coding horror that goes beyond your, and also my, imagination.)

Good luck!
 
Share this answer
 
Comments
hance_micle 1-Dec-10 6:22am    
it's long story...
You are primarily going to be thinking about technical debt. You can find a good article with some decent links here[^].
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900