我有一个GridView
和一个列,GridView
其中有一个linkButton
可以打开modalpopupextender
点击的列。我能够在popextender
面板中绑定数据,但现在我想从该面板中检索数据。我从每个人那里获取数据GridRow
:
foreach (GridViewRow row in MyGridView.Rows)
{
Label Date = (Label)row.Cells[0].FindControl("DateId");
string date = Date.Text;
//Code to get linkButton(asp:ModalpopUpextender) and data from
//asp:panel of ModalpopUpextender
}
我四处寻找答案,但无法找到解决问题的方法。提前致谢。