Monika,
This can simply be done thru javascript as below:
document.getElementById("DataGrid1").rows[1].cells[1].innerText = "Testing by mike";
here DataGrid1 is the name of table that gets crated in HTML in place of datagrid, but this is not a good practice as when you refresh the page, this value will be lost from your grid, then to maintain this value, lot of manipulation has to be done, so try to think in a good manner with good logic.
Regards
Mike
Fortune favours the brave, so don't regret on missed oppurtunities.
|