Take the community feedback survey now.
                AI OnAI Off
            
        Take the community feedback survey now.
 
                
if(PersonalizedData.Current!=null) 
{ 
  // Print current value 
  if(PersonalizedData.Current["MyTestKey"]!=null) 
    Response.Write(PersonalizedData.Current["MyTestKey"]); 
  
  // Set new value 
  PersonalizedData.Current["MyTestKey"] = "MyTestValue"; 
}
                        