protected void EduView_RowCommand(object sender, GridViewCommandEventArgs e)
{
if (e.CommandName == "EduEdit")
{
LinkButton lk = (LinkButton)e.CommandSource;
GridViewRow dr = (GridViewRow)lk.Parent.Parent; //取得对应行
}
}
{
if (e.CommandName == "EduEdit")
{
LinkButton lk = (LinkButton)e.CommandSource;
GridViewRow dr = (GridViewRow)lk.Parent.Parent; //取得对应行
}
}