Assume i have 3 buttons button1, button2, button3
And each of them are firing the same method onClick="Redirect"
PROBLEM
How can i able to redirect them different pages by checking whether which button is clickedbutton1.click; redirect(page1)
, button2.click; redirect(page2)
, button3.click; redirect(page)
how can i do this instead of fired different methods.