I know the HTMl and CSS isn't right yet and am not to fussed yet. But the ASP is returning a 405 resource unavilible.
My hosting is with 1&1 and it is turned on.
booking form is here
ASP source code is:
<% @LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<%
Set Mail = Server.CreateObject("SMTPsvg.Mailer") 'create an Asp mail component.
Mail.FromName = "form1"
Mail.FromAddress= Request.Form("email")
Mail.RemoteHost = "mrvnet.kundenserver.de" ' The mail server you have to use with Asp Mail
Mail.AddRecipient "chabrisloire@aol.com"
Mail.Subject = "Gite Booking"
Mail.BodyText = Request.Form("yourname")
Mail.BodyText = Request.Form("email")
Mail.BodyText = Request.Form("datearrive")
Mail.BodyText = Request.Form("datedepart")
Mail.BodyText = Request.Form("booking")
if Mail.SendMail then
Response.Write "Your mail has already been sent..."
else
Response.Write "Mail send failure. Error was " & Mail.Response
end if
Set Mail = Nothing
%>
</body>
</html>
all help much appeciated