Clear History
am 02.01.2008 08:41:46 von 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
Re: Clear History
am 02.01.2008 12:38:06 von nemtsev
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> Kuldeep