I'm sorry, Paul, but I don't know where to "grab some email
code" or even what it might look like. Here is the snippet of code
for the response.redirect. Could you show me where to insert the
code you mentioned and I'll at least know that much. I'll look for
the "email code" elsewhere unless it's something easily you'd care
to share.
Dim MM_editRedirectUrl
MM_editRedirectUrl = "index.asp"
If (Request.QueryString <> "") Then
If (InStr(1, MM_editRedirectUrl, "?", vbTextCompare) = 0)
Then
MM_editRedirectUrl = MM_editRedirectUrl & "?" &
Request.QueryString
Else
MM_editRedirectUrl = MM_editRedirectUrl & "&" &
Request.QueryString
End If
End If
Response.Redirect(MM_editRedirectUrl)
Thanks.
Jerry