hi friends,
I am new to ASP.NET development.
I want to know how to handle realtime project from the begining.
As of now i know how to make a 3-tier architecture and i know how the code flows through the different layers of the architecture.
i want to know what are the fundamental and inportant things to be considered while developing the real time project in ASP.NET.
Where should we consider design patterns?
where should we consider UML?
before starting codeing and while codeing which parts of the project must be monitering regularly i mean security and memory overflow...
so any seniors can help me in this matter.
please give me detailed and step wise procedure for handing realtime projects in ASp.NET
waiting for your valuable reply
thanx in advance
Loading
Venkatesh EllurPosted Oct 23, 2009, 8:28 AM
When it comes to ASP.NET Applications there are many things to be considered and everything depends on the requirement. However here are few of the basic things that needs to be considered while developing ASP.NET applications.
1. Usability.
2. Performance.
3. Security (Based on the Requirement, i.e for applications like ecommerce, banking etc..)
4. Enhancability.
If you need any specific information please let me know so that i can help you out to the best.
jingePosted Oct 22, 2009, 11:34 PM
Asp.NET is not for building real time applications. You may turn to C++, or much more low level assembly languages.
If it is not that strictly real time, then you could consider using Ajax. Like if you are building stock applications, then the chart can be refreshed, or the data in the grid will be refreshed whenever there is a change to the database.
Three tiers is a pattern you can use to make the application more stable and extendable and maintable. But if you are building small applications, you don't need to use it since it seems to be an overkill.
Let me know if you want to know more.
jinge.