We have a page where people can list results of football games played in the last x months. There are 6 different drop down select boxes containing items such as “Age Group”, “Division”, “Team Name”, “Game Date”, “Ground Location” etc. When any of these are selected, the others are all updated so that they only contain data relavant to the selections entered in other drop downs. So, If a Team Name of “abc” is selected, the “Game Date” drop down then only contains dates that this time has a game on. For each update of the drop down select, tables are built with “Upcoming Games, “Previous Results” etc etc…
At the moment, all this is achived via a full page refresh, which is slow and worse gives the perception of slowness as the whole page is refreshed.
I need this changed to ajax so that only the drop down selects and the tables containing the data are refreshed, not the whole page…
MUST be written in asp (and ajax) – performance is paramount.