///
/// This method is called when a page is loaded.
///
private void RetrieveCache_MyPageLoad(object sender, System.EventArgs e)
{
if ( Cache["UpdatedRecordID"]!= null)
{
// Retrieve information from cache.
string updatedRecordID = (string)Cache["UpdatedRecordID"];
// Add business logic here.
}
}
|