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!

link|improve this question

1  
Study Page Life Cycle at msdn.microsoft.com/en-us/library/ms178472.aspx – Tomas Voracek Apr 10 '11 at 22:25
I have another listview control and it does get repopulated well when I use listview2.DataBind(). I do not know why only the first one does not get repopulated:( – SEA Apr 10 '11 at 22:26
1  
Your best bet is to try to reproduce the problem from scratch using just enough code to reproduce it. (Removing any noise and variants from other code.) If you can reproduce it with a minimum amount of code, post that entire minimum amount here. – David Apr 10 '11 at 22:50
2  
I got the answer. You guys were right. I should have studied page cycle deeper. I figured out that button onclick event handler is fired after postback gets done. I was updating my listview control before my database gets updated. thanks, everyone. – SEA Apr 10 '11 at 23:24
Thanks for letting us know. You might want to mark this as answered. – Steve Wellens Apr 10 '11 at 23:51
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.