<%
dim state
state=trim(request.form("action"))
if state="" then
state="form"
end if
if state="form" Then
%>
<%
'IF request("verificationCode") <> "" AND request("verificationCode") = session("verificationCode") THEN
elseif state="show" then
'response.write("hi")
'title=trim(request.form("title"))
'name=trim(request.form("name"))
'email=trim(request.form("email"))
'layout=trim(request.form("layout"))
'loadtime=trim(request.form("loadtime"))
'sectionheads=trim(request.form("sectionheads"))
'friendliness=trim(request.form("friendliness"))
'comments=trim(request.form("comments"))
title=trim(request("title"))
name=trim(request("name"))
email=trim(request("email"))
layout=trim(request("layout"))
loadtime=trim(request("loadtime"))
sectionheads=trim(request("sectionheads"))
friendliness=trim(request("friendliness"))
comments=trim(request("comments"))
msg="Please enter correct Image Value"
url="http://www.rakhigiftstore.com/feedback-form.asp"
'response.write(name)
IF request("verificationCode") <> session("verificationCode") Then
'message = "Please type correct image value."
state="form"
Response.Write("<" & "script>alert('" & msg & "');")
Response.Write("window.location='" & url &"'")
Response.Write("<" & "/script>")
'state="form"
't=request("title")
'n=request("name")
'mail=request("email")
'response.redirect("http://www.rakhigiftstore.com/feedback-form.asp")
End if
%>
| You submitted |
| Name: |
<%=title%><%=(name)%>
|
| E-mail: |
<%=(email)%>
| | Site Layout: |
<%=(layout)%>
| | Load Time: |
<%=(loadtime)%>
| | Section head: |
<%=(sectionheads)%>
| | Frienliness: |
<%=(friendliness)%>
| | Comments: |
<%=(comments)%>
| |
<%end if%>
<%'end if%>
|