public static void AttributeSave(string AttributeName, string AttributeValue) { ClassAttribute oAttr = new ClassAttribute(AttributeName); oAttr.DeleteByName(AttributeName); oAttr.AttributeName = AttributeName; oAttr.AttributeValue = AttributeValue; oAttr.Save(0); }