K
Keith G Hicks
vwd 2005 express.
when editing the CUSTOM databinding of a text box in a FormViews
"ItemTemplate" I'd like to do this:
Bind("[FirstName] & ' ' & [LastName]")
Or if you prefer, this is the resultant ASP code from setting the property
above:
<asp:Label ID="FirstNameLabel" runat="server" Text="<%#
Bind("[FirstName] & ' ' & [LastName]" %>"
Width="312px"></asp:Label>
but that doesn't work. How do I construct the string so that the result is
the concatenation of the FirstName and the LastName?
Thanks,
Keith
when editing the CUSTOM databinding of a text box in a FormViews
"ItemTemplate" I'd like to do this:
Bind("[FirstName] & ' ' & [LastName]")
Or if you prefer, this is the resultant ASP code from setting the property
above:
<asp:Label ID="FirstNameLabel" runat="server" Text="<%#
Bind("[FirstName] & ' ' & [LastName]" %>"
Width="312px"></asp:Label>
but that doesn't work. How do I construct the string so that the result is
the concatenation of the FirstName and the LastName?
Thanks,
Keith