Hello all. I am a little new to Variables in ASP, and a little confused on concatenating multiple variables together. I have fields in the database for EmpNo, EmpFirstName, and EmpLastName, and what I want to do is to is enter all three values together in a field i.e. 13 - John Doe.
This code is working for 1 value, but not sure how to get the other two:
Code:
<td width="60"><div align="left"><%=(rsUserName.Fields.Item("EmpNo").Value)%></div></td>
Granted, I could repeat the part between the <% %> tags for each record, which did work, but is that the best way? If so, how would I put spaces between each item?
Thanks in advance,
Parallon