
April 12th, 2002, 01:30 PM
|
|
Contributing User
|
|
Join Date: Dec 2002
Posts: 14,575
  
Time spent in forums: < 1 sec
Reputation Power: 23
|
|
|
<i><b>Originally posted by : Ctau</b></i><br />Hi Ross,<br />One thing you might check for is that you are not over writing your data on the postback. After some one triggers your update event the first procedure that will be called is the page load event and then your update event will be called. So if your not carefull you can easily over write the changed value with the original. <br /><br />Also, make sure that the update sub is being called. Hope this helps! <br /><br />Ctau<br /><br />------------<br />Ross at 4/10/2002 6:10:36 AM<br /><br />Hi,<br />I've recently taken up ASP.NET for our company development and everything seems to be working fine until I tried to update the Datagrid.<br /><br />The call to the Update Event handler does not seems to pass back the updated value from the Edit Text box, wheres, the old value was given.<br /><br />public void UpdateCommand(Object sender, DataGridCommandEventArgs e) <br /><br />
|