Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
private void Page_Load(object sender, System.EventArgs e)
{
if (!(bool)Configuration["EPfEnableFreeRegistring"])
{
DenyRegistring.Visible = true;
CreateEditUser.Visible = false;
}
else
User = new UserSid(SecurityIdentityType.ExtranetUser);
//Personalized Data
if (PersonalizedData.Current != null)
{
// Print current value
if (PersonalizedData.Current["MyTestKey", CurrentPage.PageLink] != null)
Response.Write(PersonalizedData.Current["MyTestKey", CurrentPage.PageLink]);
// Set new value
PersonalizedData.Current["MyTestKey", CurrentPage.PageLink] = cbPress.Checked;
}
}
I can see the true value stored in tblUserProperty. I assume that I cannot really see the value through admin mode and will have to create a template to retreive these values, right?
Thanks.
V