ASP feedback problem

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.

<%
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
%>