我有两个列表视图。在第一个 Listview 的 Item 命令事件中,我使用 ajaxtoolkit 在模式弹出窗口中显示第二个列表视图。
protected void lvSelection_ItemCommand(object sender, ListViewCommandEventArgs e)
{
this.lvPopup.Visible = true;
this.lvPopup.DataSource = linqdataSource;
this.lvPopup.DataBind();
this.mdlPopup.Show();
}
现在在第二个列表视图的 itemcommand 事件中,我需要更改第一个列表视图中所选项目的内容。
有可能这样做吗?