@Jim - That's progress. If you use the method GetAttributeValue<> and the attribute doens't have a value then the result will be null. If you try to combine null fields then you'll get the null reference exception. It's a little tedious, but update the code so those methods like this: string LicenseLType = new_s_licenseinformation.Contains("new_licensenumbgtype") ? new_s_licenseinformation["new_licensenumbgtype"].ToString() : String.Empty; This will ensure that the LicenseLType field has a value, even if its a blank value. Thanks, Aiden
↧