I am going crazy trying to find the error

W

William Gower

<Columns>
<asp:TemplateColumn runat="server" HeaderText="Full Name" >
<ItemTemplate>
<asp:label runat="server" text='<%#
DataBinder.Eval(Container.DataItem, "FirstName") +
" " +
DataBinder.Eval(Container.DataItem,
"LastName") %>' />
</ItemTemplate>
</ asp:TemplateColumn>
</Columns>

Expression exected and it is pointing to the <asp:label> line.
 
C

Cor Ligthert

Hi William,

Did you ask this in the newsgroup?

microsoft.public.dotnet.framework.aspnet

Cor
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top