Message Box - Click OK Twice
ASP
Dreamweaver CS4
Hi All,
I have a Server-Side VBScript -> Client-Side JS Alert Message Box based on whether or not there is a duplicate entry in an access database.
If Not rsDuplicates.EOF Then
msg = "This Player Is Already Registered"
Response.Write("<" & "script>alert('" & msg & "');")
Response.Write("<" & "/script>")
ElseIf (CStr(Request("MM_insert")) = "form1") Then etc.
The Message Box works OK and stops duplicate entries, however, you have to click OK twice before the box closes.
Any help, greatly appreciated
Regards
