Suppose I have a GridView whose data source is a list of type Meeting. Every Meeting object has a property of type Employee, and at the same time every Employee has a Name property. If I want to show the name of the Employee in a GridView, I should do this:
<asp:TemplateField>
<ItemTemplate>
<asp:Label Text='<%# Eval("Employee.Name") %>' runat="server" />
</ItemTemplate>
</asp:TemplateField>
My question: Why I'm not able to do the same thing with Bind? When trying to display the property of a property using Bind, I get a compilation error. What are the differences in this case about using Eval or Bind?
English is not my first language, sorry for all possible mistakes.