H
hth
Hi
I usually check the key and value in my cache with following code:
foreach (DictionaryEntry objItem in Cache)
{
lblCache.Text += "<li>" + objItem.Key;
lblCache.Text += "=" + objItem.Value.ToString();
}
but if I change my web.config file and save it, the code above that had
give me expecting result, give me noting.
Does someone know why this is happening and if there is a way around
it?
Helgi
I usually check the key and value in my cache with following code:
foreach (DictionaryEntry objItem in Cache)
{
lblCache.Text += "<li>" + objItem.Key;
lblCache.Text += "=" + objItem.Value.ToString();
}
but if I change my web.config file and save it, the code above that had
give me expecting result, give me noting.
Does someone know why this is happening and if there is a way around
it?
Helgi