PDA

View Full Version : JScript


mordase
05-06-2003, 04:06 PM
Hello!
I am trying to add a message box for a "save" button that I have set up in an ASP in Access. The code that Access has written for the onclick button is:

tabIndex=9>Save Record</BUTTON>
<SCRIPT language=javascript event=onclick for=Command0>
try { MSODSC.CurrentSection.DataPage.Save(); }
catch (e)
{ alert (e.description);}
</SCRIPT>

Can someone show me how to add a "record saved" window when the user clicks this button.
TIA