Dear,
If you are loading DropDownList in Page_Load event then the code of databinding must be execute once.
IsPostBack property of Page class is used to determine whether a page is loaded first time or not.
You may add your databind code like this:
if(IsPostBack==false) {
..
.. Place your databind code here..
}
__avd
Posting Genius (adatapost)
8,648 posts since Oct 2008
Reputation Points: 2,136
Solved Threads: 1,241