asked for help on my application , that's run on windows server 2003 and iis 6.0 ,this applications gross now , users now about 60,000 per day. and that what i did to make it faster
a.SQL server 2005 :
- all query i convert it to storedprocedure.
- all tables have indexes on FK.
- most on select statement from view.
- never use * in all command.
but still have dead lock error
B. js file :
- include it all in one file
- optimize file
c. css file:
- optimized in one file
D.asp.net 2.0 :
- most of default page run on json object by calling web method and render page or usercontrols.
- all photo i saved on server max size to it 20KB.
- enable caching
E.windows server 2003:
- when i use performance tool in windows 80% of it come from sql
any suggest to improve performance of this application