Clear History

  • Thread starter Thread starter Kuldeep
  • Start date Start date
K

Kuldeep

Framework: Visual Studio 2005
Technology: ASP.NET 2.0
Language: C#.NET 2.0

Hi All,

Is there a way to programmaticlly clear a selected few URL's from the
"History" section of our Internet Explorer settings

Thanks,
Kuldeep
 
Hello Kuldeep,

u cant do it, except clearing items in registry

did u try not to cache the desired urls like
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.Cache.SetAllowResponseInBrowserHistory(false);



---
WBR,
Michael Nemtsev [.NET/C# MVP] :: blog: http://spaces.live.com/laflour

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo


K> Framework: Visual Studio 2005
K> Technology: ASP.NET 2.0
K> Language: C#.NET 2.0
K> Hi All,
K>
K> Is there a way to programmaticlly clear a selected few URL's from the
K> "History" section of our Internet Explorer settings
K>
K> Thanks,
K> Kuldee
 
Back
Top