I have a literal defined in a usercontrol which is embedded in an aspx and itself embedded in a Masterpage.
this.Parent.FindControl("litError") returns me the control... but the client ID is "phContent_litError". It does find the control on the server side code...
When I look into the generated HTML, i see "ctl00_ctl00_phContent_litErrorPanel"
Is it normal ?
My question is because I added an initiator control ( button) dynamically in the ajaxsettings of my ajaxmanager to update the litError... However, when there is an error, I update the litError.text... but It wouldnt update it on the browser... which led me to check the litError control...