Gridview and line feeds

Nashua58

New member
Joined
Nov 20, 2006
Messages
1
Programming Experience
10+
Hello All

I'm new to ASP.Net and Web designer but have exstensive experience with VB and Access. I am looking to put a line feed between 2 fields that I want to display in a column using the GridView. Can anyone tell me how or where to look for this. I just can't seem to see the trees for the forest. My code is below and I would like the line field to go between the Eval("NAME") & EVAL("ADR1")

Thanks
HTML:
<asp:LabelID="Label8"runat="server"Text='<%# Eval("NAME")& Eval("ADR1") %>'Width="200px"></asp:Label>
 
Last edited by a moderator:
HTML:
<asp:Label ID="Label8" runat="server" Width="200px">
<%# Eval("NAME") %>
<br />
<%# Eval("ADR1") %>
</asp:Label>

Thread was moved to ASP.Net section.
 
Back
Top