in my page I have many buttons, is it possible using one method to deal with all button clicked.
protected button1_click(object sender, EventArgs e)
{
}
protected button2_click(object sender, EventArgs e)
{
}
.....
can I use a loop to do these? all these buttons do the similar jobs.
thanks.
Go to the complete details ...