Hi I have a gridview control with a template column that has a textbox and
when the control is bound to the datasource the textbox is filled ok.
I then change what is in the textbox in the gridview control and in the
gridview_RowDat aBound event I have
string DiscDescrip =
Convert.ToStrin g((e.Row.Cells[5].FindControl("t xbxDiscgv") as TextBox ).Text);
This returns what was initially loaded in the textbox but not what I had
just changed it to, any ideas?
Thanks Paul.
--
Paul G
Software engineer.
when the control is bound to the datasource the textbox is filled ok.
I then change what is in the textbox in the gridview control and in the
gridview_RowDat aBound event I have
string DiscDescrip =
Convert.ToStrin g((e.Row.Cells[5].FindControl("t xbxDiscgv") as TextBox ).Text);
This returns what was initially loaded in the textbox but not what I had
just changed it to, any ideas?
Thanks Paul.
--
Paul G
Software engineer.
Comment