111,098
社区成员




private void DataList1_ItemCommand(object source, System.Web.UI.WebControls.DataListCommandEventArgs e)
{
if(e.CommandName=="aaaa")
{
string id = Convert.ToString(DataList1.DataKeys[e.Item.ItemIndex]);
//id取出来了这里写对DataList2的操作
}
}