inamingcontainer

ASP.NET WebControl ITemplate child controls are null

Here is what I want: I want a control to put on a page, which other developers can place form elements inside of to display the entities that my control is searching. I have the Searching logic all working. The control builds custom search fields and performs searches based on declarative C# classes implementing my SearchSpec interfac...

explanation of differences in ASP.NET Repeater unique name format string

Can anyone explain reasons why the name property of a Repeater control's child controls would be generated differently in an ASP.NET application when it is deployed on different IIS servers? One some IIS servers the Name is generated using the format: String.Format("{0}:_ctl{1:00}:{2}", RepeaterControlID, itemIndex, ChildControlID); ...