Thank you!
I have a slight script problem, this is the whole script of my page -
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- #include VIRTUAL="/includes/common.asp" -->
<%
submit = get_param("submit")
thank_you = ""
if(submit = "send") then
efrom = get_param("send_from")
eto = get_param("send_to")
esubject = get_param("send_subject")
ebody = get_param("send_body")
call send_mail(efrom,eto,esubject,ebody)
thank_you = "<b>Your Message Has Been Sent</b>"
end if
%>
<html>
<%=thank_you%>
<form ACTION="<%=get_http("URL")% METHOD="POST">
Send To: <input TYPE="text" NAME="send_to" VALUE=""><br>
From: <input TYPE="text" NAME="send_from" VALUE=""><br>
Subject: <input TYPE="text" NAME="send_subject" VALUE=""><br>
Message:<br><textarea NAME="send_body" WRAP="virtual"></textarea>
<input TYPE="submit" NAME="submit" VALUE="send">
</form>
</html>
and the script error says -
Active Server Pages error 'ASP 0116'
Missing close of script delimiter
/formsend_2pk49yqkit.asp, line 18
The Script block lacks the close of script tag (%>)
Have I missed something out?
Many thanks again.
Craig.