I have problem in asp.net button control.
I define a button in form, onclick event of button is not firing when I click on the button.
onclick
&
In the case of nesting the LinkButton within a Repeater you must using something similar to the following:
LinkButton protected void Repeater1_OnItemCommand(object source, RepeaterCommandEventArgs e) { if (e.CommandName.Equals("MyUpdate")) { // some code } }