i have created two buttons using html. yes and No. i need the get the event triggered when the button is clicked
i.e... onclick=getvalue().
public void SetYesButton(string msg_button_class) {
this.msgbox_Yes_button = "<input type=\"button\" value=\"Yes\" class=\"" + msg_button_class + "\" onClick=\"getvalue()\";>";
}
public void SetNoButton(string msg_button_class)
{
this.msgbox_No_button = "<input type=\"button\" value=\"No\" class=\"" + msg_button_class + "\" onClick=\"document.getElementById('pagedimmer').style.visibility = 'hidden'; document.getElementById('msgbox').style.visibility = 'hidden';\">";
}