View Single Post
  #22 (permalink)  
Old 08-03-2007, 06:22 AM
Venkat Venkat is offline
D-Web Master
 
Join Date: Mar 2007
Posts: 350
Venkat is on a distinguished road
Default Re: Implementation Data Controls in asp.net

Hi

You could trace out the ID of every control in gvr:
foreach (Control ctrlChild in gvr.Controls)
{
Trace.Write("Child Item", ctrlControl.ID);
}
and see what .net thinks is there?
Reply With Quote