I\'m currently stuck. I have a webform with a button that registers or saves a record. What i\'d like to is have it display a javascript alert and then redirect to a page. H
protected void Save(..) { // Do save stuff ShowMessageBox(); } private void ShowMessageBox() { string sJavaScript = ""; Response.Write(sJavaScript); }