I am populating a grid on a web site. The user then inputs data into the grid, then clicks a "Continue" button. I have used a variety of methods to pull the input data from the grid, but the fields always show that nothing was updated.
I have used: tgtQtyTest = sheet.Cells(RowCount, ColCount).Value as well as
Dim dt As DataTable = sheet.Cells.Export(0, 0, totalRows, totalColumns, True, True)
In both cases, the cells where the data was input showed 0 or Null. Please let me know how to handle this issue.
Thanks,