Contact form on Win2k server

  • Thread starter Thread starter ttt123us
  • Start date Start date
T

ttt123us

I am using a win2k server, ISA2K, IIS5, IIS lockdown, URL
scan 2.5 are installed. My website have a contact form,
but when I try submit via contact form then returned
error" Permission denied". Pls. help to fix it, what
should to be changed? The contact form as content below:

<SCRIPT LANGUAGE=VBScript RUNAT=Server>

name=request("name")
address=request("address")
phone=request("phone")
fax=request("fax")
email=request("email")
content=request("content")

set mSEmail = Server.CreateObject("CDONTS.NewMail")
mSEmail.Subject="Visitor Contact"
mSEmail.To="(e-mail address removed)"
mContent = "My name is " & name & vbNewLine
mContent = mContent & "Address " & address &
vbNewLine
mContent = mContent & "Phone " & phone & vbNewLine
mContent = mContent & "Fax " & fax & vbNewLine
mContent = mContent & "E-mail" & email & vbNewLine
mContent = mContent & content
mSEmail.Body=mContent
mSEmail.Send
Set mSMail = nothing

</SCRIPT>

<table cellspacing="0" cellpadding="0" width="100%"
border="0" style="border-collapse: collapse"
bordercolor="#111111">
<tr><td class=title height="30">
Message Sent</td></tr>
<tr><td>We will contact with you soonest.</td></tr>
</table>
 
I am using a win2k server, ISA2K, IIS5, IIS lockdown, URL
scan 2.5 are installed. My website have a contact form,
but when I try submit via contact form then returned
error" Permission denied". Pls. help to fix it, what
should to be changed? The contact form as content below:

Post in the IIS groups, and include the specific error. Also look at
your logs to see what's being denied. My guess is you haven't enabled
script execution for the folder.

Jeff
 
Back
Top