Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

VB Script - spacing out info?

Explorer ,
Nov 05, 2007 Nov 05, 2007
OK have a VBscript that process email for a contact page. How do you space out information that is sent to the email.

Here is the code:
"Your Interest: " & request.form("party_zone") & request.form("outdoor_rental")

When the email arrives the party-zone and outdoor_rental display together like this
Your Interest: Party ZoneOut Door Rental (no space between zone and out

How can I alter the code so it looks like
Your Interest: Party Zone Out Door Rental
TOPICS
Server side applications
372
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Nov 05, 2007 Nov 05, 2007
"theMachien" <webforumsuser@macromedia.com> wrote in message
news:fgnnl6$1pk$1@forums.macromedia.com...
> OK have a VBscript that process email for a contact page. How do you space
> out
> information that is sent to the email.
>
> Here is the code:
> "Your Interest: " & request.form("party_zone") &
> request.form("outdoor_rental")
>
> When the email arrives the party-zone and outdoor_rental display together
> like
> this
> Your Interest: Party ZoneOut Door Rental (no space between zone and out
>
> How can I alter the code so it looks like
> Your Interest: Party Zone Out Door Rental

Add a space

"Your Interest: " & request.form("party_zone") & " " &
request.form("outdoor_rental")


Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Nov 05, 2007 Nov 05, 2007
LATEST
Great thanks that what I was thinking but was missing the 2nd &

thanks
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines