I have Listview control that is populated by data from database. When I click an asp button control, I want to repopulate my Listview control. In my c# code, I change the select parameter for my listview control during postback and execute
listview.DataBind();
For some reason I do not understand, listview is not repopluated when I click the button for the first time, but gets repopulated for the second time.
For example, if my listview control is supposed to show 1 in my first button click and 2 in my second button click, my listview control shows 1 in my second button click and 2 in my third button click.
I am sorry for writing in confusing way:( Please let me know if you have any clue on this matter!
Thanks in advance!