I have a grid, when I select edit, I have one dropdown box that can be changed. After the change I need to get the Id field of that record. That field is hidden and readonly. I tried the datakeys but didnt work. Thanks
This code gets me the changed value
strQty = CType(gridShoppingCart.Rows(e.RowIndex).FindControl("drpQtyList"), DropDownList).Text
But I need the id of the record so I can pass to stored procedure to update the Qty Field for the record.
Again Thank you
This code gets me the changed value
strQty = CType(gridShoppingCart.Rows(e.RowIndex).FindControl("drpQtyList"), DropDownList).Text
But I need the id of the record so I can pass to stored procedure to update the Qty Field for the record.
Again Thank you