I have a rad alert function (from this site) that I got to work great, but now I want to make it work AFTER i do logic on code behind page.
It works when I use onclick="my javascript" in the button tag. But I want it to fire on the code behind AND run the script after I do logic.
How can I do this?
HOW?
It works when I use onclick="my javascript" in the button tag. But I want it to fire on the code behind AND run the script after I do logic.
How can I do this?
protected void btnResetPwd_Click(object sender, EventArgs e)
{
* here is my button event click
* I want logic here, then if good......run that radalert(); script
}
HOW?