I am trying to bind a BoundField of a DetailsView control to a child object of the datasource, I can't seem to find the right syntax.

Here's some sample code;

<asp:BoundField DataField="Address.Postcode" HeaderText="PostCode" />

This code doesn't work but you get the idea.

Using this code I get the exception; A field or property with the name 'Address.Postcode' was not found on the selected data source.

Thanks.

link|improve this question

79% accept rate
Did you just tried to use Postcode instead of Address.Postcode – Allan Chua Nov 5 '11 at 14:07
Just tried. Nope doesn't find it. – Mike Mengell Nov 5 '11 at 14:10
Uhmmm try to bind the object to the dataform that contains the datafield as it's CurrentItem then try to bind Postcode to your data field – Allan Chua Nov 5 '11 at 14:11
feedback

1 Answer

up vote 2 down vote accepted

you can use item template .... take a look at this link

<asp:TemplateField HeaderText=”First Name” SortExpression=”Person.FirstName”>
<ItemTemplate>
    <asp:Label ID=”FirstNameLabel” runat=”server” Text=’<%# Eval(“Person.FirstName”) %>’></asp:Label>
</ItemTemplate>

link|improve this answer
Worked a treat, thanks! – Mike Mengell Nov 5 '11 at 15:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.