In my first file i.e File1 i am having a text field having value "FName"
now i want to fetch the data of that textfield n i want to send the input data into my mail body.
File2.asp
<%
Dim objNewMail
Set objNewMail = CreateObject("CDONTS.NewMail")
Dim strName
strName = Request( "FName" )
objNewMail.From = "behera.chinmayananda@gmail.com"
objNewMail.To = "behera.chinmayananda@gmail.com"
objNewMail.Subject = "Resume"
objNewMail.BodyFormat = 0
objNewMail.MailFormat = 0
objNewMail.Body = Request("FName")
objNewMail.Send
Set objNewMail = Nothing
%>
When i write like this i am getting "True" value in my mail body. But i want the value that the user has put in the text field named "FName"
Plz can anybody suggest me the solution.