you've got a bunch of issues with that page. the number one issue is that fact I see ASP scripting when I few the source.
number two in regards to your question
there is no form around that particular "form"
the first thing you need to figure out however is why I can get this
<%
on error resume next
if Request.Form("Posted"=1 then
Dim objMail
Set objMail = Server.CreateObject("CDONTS.NewMail"
objMail.From = Request.Form("Email"
objMail.Subject = "Join sDc"
objMail.To = "spaz@silentdeath.us"
Body="CS Name:"&Request("CSName"&vbCrlf
Body="Real Name:"&Request("Name"&vbCrlf
Body="Age:"&Request("Age"&vbCrlf
Body="Reason For Joining:"&Request("Reason"&vbCrlf
Body="Any Cal Exp?"&Request("Cal"&vbCrlf
objMail.Body = Body
objMail.Send
Response.write("Mail was Sent"
'You must always do this with CDONTS.
set objMail = nothing
end if
if err then Response.Write err.description end if
%>
you have a commented out form with hidden fields. get rid of it if you don't need it
theres a form that I don't know what is used for at the bottom of the code also that can go I think
hey, stop using frontpage if you really want to take control of the page and in reality, have the power to debug it. just my opinion and suggestion
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.