Wednesday, 2 September 2015

dropdownlist selected value is not changing in asp.net



Please set the AutoPostBack property true of DropDownList control.

AutoPostBack="true"

and add below the code in the page load event.

 if (!IsPostBack)
        {

         //Your code here

         }

No comments:

Post a Comment