在gridview中显示来自另一个sqldatasource的字段
我正在尝试使用另一个表中的数据实现 gridview 字段,表中名为“LocationID”的字段之一是位置表的外键。 我不想在网格视图上显示数字,我只想查看位置表中的地址字段并使用下拉列表控件编辑值。
这是与 gridview 和 sqldatasource 一起使用的主表
Net-Items
[ID],[Name]
,[Model]
,[SerialNumber]
,[Company]
,[PurchaseDate]
,[PurchasePrice]
,[MonthPrice]
,[CommitmentPrice]
,[Status]
,[CommitmentDate]
,[Free]
,[TillDate]
,[LocationID]
,这是辅助表,
Net-Locations
[ID]
,[ContactName]
,[Address]
,[City]
谢谢
I am trying to implement a gridview field with data from another table, one of the fields in the table called "LocationID" is a foreign key to the Locations table.
I don't want to display the number on the gridview I want to see only the address field from the Locations table and edit the value using a dropdownlist control.
this is the main table in use with the gridview and sqldatasource
Net-Items
[ID],[Name]
,[Model]
,[SerialNumber]
,[Company]
,[PurchaseDate]
,[PurchasePrice]
,[MonthPrice]
,[CommitmentPrice]
,[Status]
,[CommitmentDate]
,[Free]
,[TillDate]
,[LocationID]
and this is the secondary table
Net-Locations
[ID]
,[ContactName]
,[Address]
,[City]
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
请尝试下面的代码。
Please try the below code.
请考虑以下教程关于如何配置 SqlDatasource 控件。特别是第 4 步:使用自定义 SQL 语句或存储过程。
Please consider the following tutorial on how to configure the SqlDatasource control. Especially the Step 4: Using a Custom SQL Statement or Stored Procedure.
创建一个单独的 SQL 数据源并查询位置表,详细说明该表中您想要的内容。
将以上代码放入 gridview 列中。
Create a separate SQL Datasource and query the Location table details what ever you want in that table.
Put the above code in the gridview columns.