Posts

Showing posts from September, 2017

Important points that programmers should remember while developing web application

There are a lot points to be considered but some of them I am writing here: 1.   Do  some  R & D about  the  business logic and make a plan  on  how you will implement it before you start writing the  code. 2.   Should write  codes in an  easy, understandable and maintainable way. 3.   Make sure you are developing  an  application  with a  consistent look and feel. 4.   Should  follow  OOP s . 5.   Exercise  best practices that are established in the industry. 6.   Maintain  the  Naming convention . 7.   Transaction should be used properly and where ver  necessary. 8.   Remember  the  concurrency issue while coding. 9.   Validation should be checked properly.  It  should be done at  the  client side  as  far  as  possible. 10.   User or role based permission should be implemented properly so that  the  user  is not able to  do anything if not permitted. 11.   Should  write  comments where ver  necessary. 12.   Should be aware about  the  security of applic