carolewhite
New Member
I have a control \[code\]Orders.ascx\[/code\] in this control I have a reference to another control \[code\]Grid.ascx\[/code\] something like this:In my \[code\]Orders.ascx\[/code\] I have :\[code\] <asp:Label id="warnings" runat="server" /> <uc:Grids id="uxGrid" runat="server/>\[/code\]Now in the grid \[code\]( Grids.ascx )\[/code\] I have a drop down control that has the quantities with a event handler method for on index change, when a different quantity is chosen in a row, it posts back and updates the price depending on the quantity. I need for each time it posts back to add a message to the label warnings in \[code\]Orders.ascx\[/code\], but my problem is that this label is in the parent control. I tried using FindControl and it DOES find it and I can set the text but it never updates the warnings label.How can I update that label text from the drop down's on index change control?. It seems that it doesnt inject everytime i select the quantity.