%@LANGUAGE="VBSCRIPT" CODEPAGE="1254"%>
<%
Response.CacheControl = "no-cache"
Response.AddHeader "Pragma", "no-cache"
Response.Expires = -1
%>
<%
Function CheckCAPTCHA(valCAPTCHA)
SessionCAPTCHA = Trim(Session("CAPTCHA"))
Session("CAPTCHA") = vbNullString
if Len(SessionCAPTCHA) < 1 then
CheckCAPTCHA = False
exit function
end if
if CStr(SessionCAPTCHA) = CStr(valCAPTCHA) then
CheckCAPTCHA = True
else
CheckCAPTCHA = False
end if
End Function
%>
Untitled Document
<%if Request.ServerVariables("REQUEST_METHOD") = "POST" then
names=Request.Form("txtname")
caddress=Request.Form("txtaddress")
telephone=Request.Form("txttelephone")
service=Request.Form("service")
channel=Request.Form("channel")
comments=Request.Form("txtcomments")
session("name")=names
session("address")=caddress
session("telephone")=telephone
session("service")=service
session("channel")=channel
session("comments")=comments
else
names=""
caddress=""
telephone=""
service="Television Initiatives"
channel=""
comments=""
end if
%>