When I insert my values in the grid, Except Sr_No I am able to see all the Values. I dont know why.
In debugger the value is coming but when I see it on front end it doesn't comes.
Here is my code:-
protected void GrdPMS_History_InsertCommand(object sender, Obout.Grid.GridRecordEventArgs e)
{
int iRowCount1 = 0;
if (Session["DtFilldata"] != null)
{
//DtFilldata = (DataTable)Session["DtFilldata"];
dt2 = (DataTable)Session["DtFilldata"];
}
else
{
BindDatatable();
}
iRowCount1 = dt2.Rows.Count;
DataRow newRow = dt2.NewRow();
newRow["SR_NO"] = iRowCount1 + 1;
newRow["FinantialYr"] = Convert.ToString(e.Record["FinantialYr"]);
newRow["Rating"] = Convert.ToString(e.Record["Rating"]);
newR ...
Go to the complete details ...