Response.write "
" Response.write strfullname Response.write "
" Response.write straddress Response.write "
" Response.write strcitystatezip Response.write "
" Response.write strphone Response.write "
" Response.write strEmail Response.write "
" Response.write("My name is" & " " & strfullname )
yeah thats right in simple terms (again not sure about the use of brackets, it is not a function response.write is a procedure)
mMessage = "My Name is " & strFullname & " I Live at " & straddress & " in " & strcitystatezip etc etc....
response.write mMessagestrEmail
strfullname = ("Joe Blow")
straddress = ("123 Easy Street")
strcitystatezip = ("Pine Bluff, Arkansas 71601")
strphone = ("(870) 123-4567")
strphone = ("jblow@seark.edu")
although that looks a bit messy you are not even defining strEmail, and I have never used brackets.
strEmail = "joe@blow.com"
strfullname = "Joe Blow"
straddress = "123 Easy Street"
strcitystatezip = "Pine Bluff, Arkansas 71601"
strphone = "(870) 123-4567"
strphone = "jblow@seark.edu"