Hello, Having some difficulty with a form object values on one page not showing up on another page which is using a VBSCRIPT. I had this working 7 years ago and can't remember how I did it!
Form has a fields for entering name and "Thank you" page processes and displays Name et cetera. Most success with ASP but thought VBScript was essentially PHP. Any help would be appreciated. Thanks.
Snippet:
<%@ LANGUAGE="VBSCRIPT" %>
<!-- "thank you" note after submitting the eNewsletter form --->
<font face="Tahoma" size="2" color="#B0C9D0">
<%
Dim DestinationMail
Dim OriginatingEmail
Dim Subject
Dim Body
Dim pos
Dim sNotice
OriginatingEmail = Request.form("Email")
DestinationMail = "mail@cliverichey.com"
Body = "Subscription Request From: " & Request.form("Fname") & vbcrlf & vbcrlf & _
"eMail Address: " & Request.form("Email")
Subject = "eNewsletter Subscription From ->>" & Request.form("Fname")