Reputation: 188
In ASP.NET My button click event doesn`t work on first click. But it works on the second click only. I hope u can help me.
Upvotes: 0
Views: 1964
Reputation: 129792
You really need to post some code for us to be able to help you. One thought is that you may be re-binding your data, and invalidating your first request. Did you miss an if(!IsPostBack) { ... }
If that's not it, you do need to show us
Upvotes: 1