How can we clear total cache of a give page

To remove all the cache of given page one of below syntax is used we can also do this in different way:-

foreach(DictionaryEntry objItem in Cache)

{

Cache.Remove(objItem .Key.ToString () ) ;

}