Jag försöker uppdatera en dynamisk egenskap men det nya värdet sparas inte.
Hur gör man för att spara det nya värdet?
mvh
Peter Eriksson, Sogeti
// Hämta rootsida
int nRoot = Convert.ToInt32(Global.EPConfig.ConfigFile.GetAppSetting("EPnStartPage"));
PageReference rootRef = new PageReference(nRoot,true);
PageData RootPage = Global.EPDataFactory.GetPage(rootRef);
RootPage.Property["NumProducts"].Value = newVale;
You have to update the dynamic propery with the DynamicPropertyClass.
Take a look in the SDK under DynamicProperty:
DynamicProperty prop = DynamicProperty.Load(CurrentPage.PageLink,"MetaKeywords");
prop.PropertyValue.Value = "Keyword1,Keyword2";
prop.Save();
Einar