|
-
Aug 29th, 2001, 09:43 AM
#1
Thread Starter
New Member
How do I display a message box???
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???
-
Aug 29th, 2001, 10:13 AM
#2
Frenzied Member
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>
-
Aug 29th, 2001, 10:17 AM
#3
Thread Starter
New Member
No it does not seem to work, I need it in VBScript, as I am using Outlook Forms.
-
Aug 29th, 2001, 10:18 AM
#4
Frenzied Member
Sorry, I presumed you were using ASP.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|