I was wondering how it would be possible to display a message box to confirm that data has been saved after a user has pressed the "Confirm Save" button, that I have created???? Any Ideas???
Printable View
I was wondering how it would be possible to display a message box to confirm that data has been saved after a user has pressed the "Confirm Save" button, that I have created???? Any Ideas???
this sort of thing would work
Code:<%@ Language=VBScript %>
<HTML>
<HEAD>
<%
Dim dataSaved
dataSaved = False
If dataSaved Then
response.write "<script language=javascript>"
response.write "alert('Data saved')"
response.write "</script>"
End If
%>
</HEAD>
<BODY>
</BODY>
</HTML>
No it does not seem to work, I need it in VBScript, as I am using Outlook Forms.
Sorry, I presumed you were using ASP.