Click here to Skip to main content
15,891,687 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Our Requirement is that when multiple users login to register
We want to reduce server trips minimum
Our form consists multiple dropdown and all dependent on everyone.
Shall we use dataset to fast performance and also multiple update panels please tell me how to increase perfomance?
Posted

try to reduce the database ping in your application and do filtering on code only,

like if you have cascading dropdowns you can use jquery /json ajax query to filter data

use json postback rather than using multiple update panel.

https://www.google.co.in/#q=cascading%20dropdown%20using%20jquery[^]
 
Share this answer
 
You can cache things, but it will make your code more complex and prone to failure.

The first thing to do is throw away ASP.NET AJAX, it is very slow and badly designed. Use jqery, as the other guy said.
 
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