I have vista premium home and IIS 7
I am using dreamweaver cs3 and i beginner to asp.
My problem is that the ie says http 500.
My code of the page is
<%
theSchema="http://schemas.microsoft.com/cdo/configuration/"
Set cdoConfig=server.CreateObject("CDO.Configuration")
cdoConfig.Fields.Item(theSchema & "sendusing")= 2
cdoConfig.Fields.Item(theSchema & "smtpserver")="smtp.gmail.com"
cdoConfig.Fields.Update
set cdoMessage=Server.CreateObject("CDO.Message")
cdoMessage.Configuration=cdoConfig
cdoMessage.From="yourname@yourserver.com"
cdoMessage.To="yourname@yourserver.com"
cdoMessage.Subject="This is the message subject"
cdoMessage.TextBody="This is the message body"
cdoMessage.Send
Set cdoMessage=Nothing
Set cdoConfig=Nothing
%>
where is my mistake, that ie says http 500?
i found the code in a book of tutorial asp.
thanks