Click here to Skip to main content
15,887,267 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
Hi all ,

I started working at a programming company since 3 years in the field of asp.net,which i am new to.I love asp.net but keep making silly mistakes.I make a complete and hard web application but always some silly mistakes males my work's value nothing.So as experienced programmers,what advice can you give me to stop making those mistakes ?

Thanks in advance.
Posted

1 solution

If the mistakes are regarding design (technical and not look n feel) of the application then, you should first create some UML Diagrams [^]print it out and then see if you miss anything. Same with the database design. Even you can ask a fellow programmer to take a quick look on the design document. And if you are not doing any design documentation then that is the main cause of design mistakes.

Regarding coding mistakes, start using unit test [^]in your project. This will allow you to produce higher quality code. And after you unit test your code, you have to do integration testing. The more you test more bugs you will catch before users catches them.

If the projects you are working are large and complex then you should consider using design-patterns. They are designed to make your projects less error prone and more flexible.

And don’t forget that when you are new, you make mistakes but you need to learn from these mistakes to gain more experience.

So to avoid most of the mistakes,

1. Design properly
2. Implement correctly
3. Test thoroughly
4. Fix quickly

Good Luck.
 
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