text vbscript help

  • Thread starter Thread starter Paul C
  • Start date Start date
P

Paul C

Hi
I am trying to create a space between two statements

subject = Request.Form("sNameField") & Request.Form("subject")

the result is something like

john smithhello from john

How do I get a space so it reads

john smith hello from john


Thankyou
Paul M
 
Hi,
add it in
subject = Request.Form("sNameField") & " " & Request.Form("subject")

Cheers,
Jon
 
Thanks Jon
I thought there might be some kind of <BR> type thing or something.
best wishes
Paul M
 
Back
Top