hello
I was trying to get a recordset value into a message box, which i managed and worked as so (after the user clicks save)
however following this code, the page should response.redirect as follows, but now the msgbox does not display at all ?
what i'd really like, on the click of save, is a messagebox that doesn't rely on user cnfirmation (flashes on screen for set time) although an ok only msgbox would be ok
thanks
tony
I was trying to get a recordset value into a message box, which i managed and worked as so (after the user clicks save)
Code:
dim oRSSaveUserMsg, msg_text
set oRSSaveUserMsg = Server.CreateObject("ADODB.Recordset")
getsaveusermsg oRSSaveUserMsg
msg_text = oRSSaveUserMsg.Fields(1)
<script language="vbscript">
''client side code
response.write "msgbox """ & msg_text & """
</script>
however following this code, the page should response.redirect as follows, but now the msgbox does not display at all ?
what i'd really like, on the click of save, is a messagebox that doesn't rely on user cnfirmation (flashes on screen for set time) although an ok only msgbox would be ok
thanks
tony
Code:
Response.Redirect ctsURL("enquiryEmail.asp") & "&EnquiryID=" & lngEnquiry & "&target=EnquirySummary.asp?Sid=" & request("sid")