以这种方式表达主从的最佳方式?
我有主从关系。基本上我有一个州列表和每个州的城镇列表。
我希望它显示类似
- 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定以下建议是否能让您放心:
使用中继器显示嵌套数据:
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!