Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Button not working...

Status
Not open for further replies.
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(&quot;Posted&quot;)=1 then
Dim objMail
Set objMail = Server.CreateObject(&quot;CDONTS.NewMail&quot;)
objMail.From = Request.Form(&quot;Email&quot;)
objMail.Subject = &quot;Join sDc&quot;
objMail.To = &quot;spaz@silentdeath.us&quot;
Body=&quot;CS Name:&quot;&Request(&quot;CSName&quot;)&vbCrlf
Body=&quot;Real Name:&quot;&Request(&quot;Name&quot;)&vbCrlf
Body=&quot;Age:&quot;&Request(&quot;Age&quot;)&vbCrlf
Body=&quot;Reason For Joining:&quot;&Request(&quot;Reason&quot;)&vbCrlf
Body=&quot;Any Cal Exp?&quot;&Request(&quot;Cal&quot;)&vbCrlf
objMail.Body = Body
objMail.Send

Response.write(&quot;Mail was Sent&quot;)

'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

___________________________________________________________________
onpnt2.gif

The answer to your ??'s may be closer then you think.
Check out Tek-Tips knowledge bank by clicking the FAQ link at the top of the page
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top