我正在使用 C# ASP.net,并且相对较新,需要在下面完成。
在我的 VS2010 Web 应用程序项目中,我有webform
一个Gridview
从表中获取数据的。
在网格中,我有Commandfiled
按钮(column1)和带有Dropdownlist
(column2)的项目模板。
用例是,用户首先listitem
从 3 个列表项(H、L 和 M)中选择一个,然后选择命令按钮。
我无法弄清楚如何listitem
从选定的行中提取所选内容
protected void GridView2_SelectedIndexChanged(object sender, EventArgs e)
{
GridViewRow row = GridView2.SelectedRow;
Label4.Text = "You selected " + row.Cells[4].Text + ".";
Label5.Text = "You selected this list item from dropdownlist " + ???? ;
}
提前致谢。