Space between string responses

  • Thread starter Thread starter Wayne-I-M
  • Start date Start date
W

Wayne-I-M

It is possible to put a space between 2 fields (sorry about the access
phrases - not sure what you call them in FP)

Like this
Group leader = , <% Response.Write strGroupLeader_FirstName %> <%
Response.Write strGroupLeader_Surname %>

The space would go between
%> <%
So you could have John Smith - at the moment I am getting JohnSmith

I have tried " ", &, plus just leaveing a space. Not working.

Thank you
 
<p>Group Leader = <%= strGroupLeader_FirstName %> <%=
strGroupLeader_Surname %></p>

should do as required.
Or:
<p>Group Leader = <%= strGroupLeader_FirstName & " " &
strGroupLeader_Surname %></p>

<%= is the same as <% Response.Write
 
Perfect

Thank you

--
Wayne
Manchester, England.



Ronx said:
<p>Group Leader = <%= strGroupLeader_FirstName %> <%=
strGroupLeader_Surname %></p>

should do as required.
Or:
<p>Group Leader = <%= strGroupLeader_FirstName & " " &
strGroupLeader_Surname %></p>

<%= is the same as <% Response.Write

--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.

http://www.rxs-enterprises.org/fp
 
Back
Top