DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Access Datakey Names On Server Side
// Access datakey names on server side
DataKeyNames="Id,Name" string IdValue=MyGrid.DataKeys[RowIndex].Values["Id"].ToString(); string name=MyGrid.DataKeys[RowIndex].Values["Name"].ToString();





