Creating Feedback Page with ASP - TechRepublic
General discussion
July 8, 2003 at 05:49 PM
dmittri2000

Creating Feedback Page with ASP

by dmittri2000 . Updated 23 years ago

My name is Orjinta Chidubem, I am an application developer that resides in Nigeria. Please help me out.

i am developing a personal web site whereby visitors to my site will send a feed back to my email box. I am developing the web application with Dreamweaver 4. It has feedback (.html) page that contains a form that the user can enter his/her name, email address and comments -this feedback page redirects to an asp page and an asp page that contains the code that sends the information enteredby the user to my email box and displays. ” ‘User’, your message has been sent”. But this does not work.It ask me whether i want to download the asp file to my computer.I don’t know whether Dreamweaver Supports ASP pages. Please Tell how i will overcome this.

The code in the asp page is shown below:

<%@ Language="VBScript" %>


Feedback Information


<% dim str(3) dim I dim myMail dim strgetTime set params=request.QueryString I=1 for each pValue in params str(I)=params(pValue) I=I+1 next strgetTime = FormatDateTime(Now(),vbLongDate) Set myMail = Server.CreateObject("CDONTS.NewMail") myMail.To = "dmittri2000@yahoo.com" myMail.From = str(2) myMail.Subject = "This is what i have to say " & strgettime Body = "Mail From:" & str(1) Body = Body & str(2) myMail.Body = Body myMail.Send Set myMail =nothing response.Write("

” & str(1) & “

“)

%>

This discussion is locked

All Comments