M
mike
how can i get datakey value of GridView ???????
protected void BookGridView_RowDataBound(object sender,
GridViewRowEventArgs e)
{
int tableId = int.Parse(
BookGridView.DataKeys[e.Row.DataItemIndex].ToString() );
.....
}
protected void BookGridView_RowDataBound(object sender,
GridViewRowEventArgs e)
{
int tableId = int.Parse(
BookGridView.DataKeys[e.Row.DataItemIndex].ToString() );
.....
}