我有一个带有数据的 GridView。此 GridView 的第一列是“SELECT”列。
如果用户单击 SELECT,它将突出显示整行。
我对此点击操作有一个事件:
protected void gvShows_SelectedIndexChanged(object sender, EventArgs e)
{
}
基本上我想做的是对于每个 SELECTED 行,我想提取列的值:
- 数据源
- 节目编号
- 剧集编号
**这是我遇到问题的地方:
string dataSource = "";
int showId = 0;
int episodeId = 0;
foreach (DataRow row in gvShows.Rows)
if (the row is selected/highlighted then...)
{
dataSource = the value under column "dataSrouce" for this ROW.
showId = the value under column "showId" for this ROW.
episodeId = the value under column "episodeId" for this ROW.
}
任何人都可以帮我解决这个问题吗?