I am filling up a datagrid using a dataset on the page load event. The user is going to click on a row and I need the value of certain fields in that row. How can I get those values of the row they click on?
VB Code:
Dim cmdView As OleDb.OleDbDataAdapter = New OleDb.OleDbDataAdapter("select * from pcms.pcms_pcard_transaction_header ", objCon) ds = New DataSet() cmdView.Fill(ds, "cards") dgView.DataSource = ds dgView.DataMember = "cards"




Reply With Quote