I am an experienced programmer but a novice at ASP. Attempting a CDO email and when I click submit an HTML page appears with my ASP code listed at the top. My HTML page form begins with:
and then i have a standard form object with a submit button. for now, the entire content of aspmailform.asp code file is simply: <% Set myMail=CreateObject("CDO.Message") myMail.Subject="Sending email with CDO" myMail.From="mymail@mydomain.com" myMail.To="myrealemailaddress@myrealemailcompany.com" myMail.TextBody="This is a message." myMail.Send set myMail=nothing %> ------ Any ideas what error would cause the ASP code to appear in the browser instead of running? Thanks for your help! - Scott