drop down list auto post back

If we set DDL's AutoPostBack property to false, after SelectedChange event, nothing fire. But if this will fire when next post back comes.

The reason is:

The original state of the DDL is stored in viewstate. Upon postback, the new state and old state are compared and the event fired (or not) accordingly.

你可能感兴趣的:(list)