November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
I found a solution. the rawproperty named PageLink must have a value (ie. "0") to enable saving.
ex:
for (int i = 0; i < page.Property.Length; i++)
{
if(page.Property[i].Name == "PageLink")
{
page.Property[i].Value = "0";
page.Property[i].IsNull = false;
page.Property[i].IsModified = true;
}
}
I have some problems with the DataFactoryService and Saving.
I have this code:
This results in SoapException: Server was unable to process request. ---> The PageReference is read-only.
Any ideas?