DetailsView 绑定到子对象

发布于 2024-12-14 03:29:13 字数 279 浏览 1 评论 0原文

我试图将 DetailsView 控件的 BoundField 绑定到数据源的子对象,我似乎找不到正确的语法。

这是一些示例代码;

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

这段代码不起作用,但你明白了。

使用这段代码我得到了异常; 在所选数据源中找不到名称为“Address.Postcode”的字段或属性。

谢谢。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

春庭雪 2024-12-21 03:29:13

您可以使用项目模板....
看看 此链接

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

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>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文