# ASP feedback problem

**URL:** https://forum.kirupa.com/t/asp-feedback-problem/146945
**Category:** Uncategorized
**Created:** [May 5, 2005, 3:27pm UTC](https://forum.kirupa.com/t/asp-feedback-problem/146945 "2005-05-05T15:27:26Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![camaleon](https://avatars.discourse-cdn.com/v4/letter/c/e36b37/32.png) [@camaleon](https://forum.kirupa.com/u/camaleon)
#### Post date: [May 5, 2005, 3:27pm UTC](https://forum.kirupa.com/t/asp-feedback-problem/146945/1 "2005-05-05T15:27:26Z")

</div>

hi guys.  
i download a asp code, work but i want put more textfield.

well i have a problem with this script, well the code work fine send the mail BUT just send 1 textfield the MESSAGE.

i want that in the mail appear all my textfield inside the mail message.

## and too! i want when send the mail dont appear a message that say Message Sent and just want that open inside the page index.html.

```auto
<%
If request("submit") <> "" THEN
Set objEMail = Server.CreateObject("CDO.Message")
Set objConfig = Server.CreateObject("CDO.Configuration")
Set Confi = objConfig.Fields
Confi("[http://schemas.microsoft.com/cdo/configuration/sendusing](http://schemas.microsoft.com/cdo/configuration/sendusing)") = 1
Confi("[http://schemas.microsoft.com/cdo/configuration/smtpserverpickupdirectory](http://schemas.microsoft.com/cdo/configuration/smtpserverpickupdirectory)") = "C:\inetpub\mailroot\pickup"
Confi.Update
Set objEMail.Configuration = objConfig
objEMail.To = "[email="mymail@mail.com"]mymail@mail.com[/email]"
objEMail.From = "[email="feedback@my.com"]feedback@my.com[/email]"
objEMail.Subject = Request("subject")
objEMail.TextBody = Request("email")
objEMail.TextBody = Request("phone")
objEMail.TextBody = Request("topic")
objEMail.TextBody = Request("message")
objEMail.Send
Set objEMail = Nothing
Response.Write("Message Sent")
Else
%>
<FORM ACTION="this.asp" METHOD=POST>
				<input name="subject" type="text" id="subject">
				<br>
				<input name="email" type="text" id="email">
				<br>
				<input name="phone" type="text" id="phone">
				<br>
				<input name="topic" type="text" id="topic">
				<br>
				<textarea name="message" rows="5" id="message"></textarea>
				<br>
				<input type="submit" name="Submit" value="Submit">
				<input type="reset" name="Submit2" value="Reset">
				<br>
</form>
<% 
End If
%>

```
