CommandArgument 바인딩 그리드뷰 필드 문제에 대해.
protected void GridView1_RowCommand(object 보낸 사람, GridViewCommandEventArgs e)
{
if (e.CommandName.ToString() == "se")
{
LinkButton myL = (LinkButton)e.CommandSource;
int Index = ((GridViewRow)(myL.NamingContainer)).RowIndex;//행 번호 가져오기
string id = GridView1 . DataKeys[Index].Value.ToString();//ID 가져오기
}
}