November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
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