I have a List in a web control when the control creates it's child controls I perform a foreach loop through the list of fields as
foreach (IField field in this._fields)
{
/* Do some work here */
}
Localhost, out dev environment, and our staging environment everything is fine. But when we deploy to our dev cluster each "field" is null during the looping. What would cause these objects to be null? When i load this list from another list of data everything loads fine and that data is not null.