Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的数据库中,我有一个名为Sales(id_s,用户名,密码)的表和另一个表Sales_trade(id_s,trade),列 id_s 是表 Sales 中的主键,它是表 Sales_trade 中的外键,这是一个捕获Sales_trade 表:
现在我需要一个想法或样本来完成这项工作:
对于每个 id_s ,显示按钮、交易次数以及这些交易的名称应该写在已显示的按钮上。
查询应该类似于:select trade where id_s=4
感谢您的时间 !
如果您想在 asp.net 页面中执行此操作,您可以添加一个执行所需查询的 SQLDatasource,并将按钮放在中继器控件中,将控件绑定到 SQLDataSource。您可以在 MSDN 上找到相关示例。