以这种方式表达主从的最佳方式?

发布于 2024-09-13 01:57:42 字数 537 浏览 6 评论 0原文

我有主从关系。基本上我有一个州列表和每个州的城镇列表。

我希望它显示类似

  • Oklahoma
  • 的 内容

    塔尔萨

  • <块引用>

    俄克拉荷马城

  • 亚利桑那
  • 凤凰城

  • 等等等等

等等。

城市名称和州名称存储在不同的表中,每个城市都包含一个 state_id

我正在使用 SubSonic3(ActiveRecord) 进行查询。 (使用 ObjectDataSource 进行数据绑定控件)

在 ASP.Net 页面中执行此操作的最佳方法是什么?我能想到的唯一想法涉及复杂的嵌套数据绑定,我无法开始工作。

I have master-detail relationship. Basically I have a list of states and a list of towns per state.

I want for it to display something like

  • Oklahoma
  • Tulsa

  • Oklahoma City

  • Arizona
  • Phoenix

  • etc etc

and etc.

The city names and the state names are stored in different tables with each city containing a state_id

I am using SubSonic3(ActiveRecord) for querying. (using ObjectDataSource for databinding controls)

What would be the best way to do this in an ASP.Net page? The only ideas I can think of involve complicated nested databinding which I can't get to work.

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

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

发布评论

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

评论(1

无声无音无过去 2024-09-20 01:57:42

不确定以下建议是否能让您放心:

使用中继器显示嵌套数据:
http://www.asp.net/data- access/tutorials/nested-data-web-controls-vb

使用嵌套数据:
http://msdn.microsoft.com/en-us/library/aa478959。 aspx

如果您只想显示嵌套数据而不编辑/更新它,那么中继器可能是不错的选择。

然后,您可以使用 ul li 标签来选择您选择的布局。

希望有帮助!

Not sure how much at ease you will be with the following suggestions:

Using repeaters for displaying nested data:
http://www.asp.net/data-access/tutorials/nested-data-web-controls-vb

Working with nested data:
http://msdn.microsoft.com/en-us/library/aa478959.aspx

If you are to only display nested data and not edit/update it, repeaters might be good choice.

You could then use ul li tags for the layout of your choice.

Hope it helps!

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