I am working with C# and Asp.Net. Is it possible to fill a particular location of a Data table.
I have a Data Table dt, and is contains this this k
You can address individual cells with:
dt.Rows[rowIndex][columnIndex]
The column can be addressed by name as well:
dt.Rows[rowIndex]["customer2"]
Mind that the output is of type Object, so you might need to cast it to the appropriate data type if you want to read its value.
Object