Results 1 to 4 of 4

Thread: How do I display a message box???

  1. #1

    Thread Starter
    New Member
    Join Date
    Aug 2001
    Location
    Midlands
    Posts
    13

    Lightbulb 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???

  2. #2
    Frenzied Member Mark Sreeves's Avatar
    Join Date
    Nov 1999
    Location
    UK
    Posts
    1,845
    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>
    Mark
    -------------------

  3. #3

    Thread Starter
    New Member
    Join Date
    Aug 2001
    Location
    Midlands
    Posts
    13
    No it does not seem to work, I need it in VBScript, as I am using Outlook Forms.

  4. #4
    Frenzied Member Mark Sreeves's Avatar
    Join Date
    Nov 1999
    Location
    UK
    Posts
    1,845
    Sorry, I presumed you were using ASP.
    Mark
    -------------------

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width