If you are binding dropdownlist at Page_Load event check IsPostBack property like
if(IsPostBack==false)
{
ddlSample.DataSource= x;
ddlSample.DataBind();
}
or If you are not using any events related with that dropdownlist just set AutoPostBack property to false
Anweshabhowmick, if this helps please login to Mark As Answer. |
Reply | Alert Moderator