I have 4 different dropdown lists (DDL's) on my Web form that are linked together. When you select a value on the first DDL, the other 3 DDL's will change values according to the selected value on the first DDL; when you select a value on the second DDL, the other 2 DDL's will change values according to the selected value on the first and second DDL's etc. Whenever there is a selected made to one of the DDL's, the postback will refresh the Web form with a set of new values for the DDL's (obtained from the DB). This works fine as far as functionality is concered. However, the refreshing of the DDL causes a flickering effect on the form (just as when you click the Refresh button on the browser). This is somewhat disturbing for the user.
My question is: is there a way to prevent (or at least minimize) this flickering effect when doing a refresh of the form? I think Windows forms are much more stable (as far as the flickering is concerned) than Web Forms, is this true?
While this may be a small matter, my goal is to produce a quality Web-based product that will have the same look and feel for the users as a Windows-based product.
Please help and thanks in advance.
sg2000