Four optimization technique for asp.net
| Below are four optimization tips in asp.net
1)Try to avoid unnecessary use of view state because it will reduce the performance. 2) Try to avoid the unnecessary round trips to server.3)Try to use connection pooling. 4)Always use stored procedures. |
|
