Steegoclege
New Member
I have a details view databound event\[code\]HttpRequest request = HttpContext.Current.Request; string header = request.Headers["X-MicrosoftAjax"]; if (header != null && header == "Delta=true") { string id = DetailsView1.Rows[0].Cells[1].Text; TextBox8.Text = DV_insert(id); // dv_insert() returns a string tb_disclbl.Text = "no label"; }\[/code\]The problem is when the page is finished rendering, neither of the textboxes have their text repopulated. I debug, and am sure the DV_insert(id) returns the string variable i am expecting, and i suspect the texts might be overwritten by some other events fired after during the page life cycle, but i dont have any other event to modify the two textboxes at all..Any idea?