![]() |
temporary internet files
Is there a way in asp.net to delete the temporary internet files from IE?
Thanks. |
Re: temporary internet files
Try this:
http://support.microsoft.com/kb/311289/en-us "Mark" <mkurten@verizon.net> wrote in message news:ecMXJvMZGHA.3496@TK2MSFTNGP05.phx.gbl... > Is there a way in asp.net to delete the temporary internet files from IE? > > > Thanks. > > |
Re: temporary internet files
This one may help too:
http://support.microsoft.com/kb/262110/ "Mark" <mkurten@verizon.net> wrote in message news:ecMXJvMZGHA.3496@TK2MSFTNGP05.phx.gbl... > Is there a way in asp.net to delete the temporary internet files from IE? > > > Thanks. > > |
Re: temporary internet files
In this article it mentions its for IE 5.0. Do you know if they'll work
with 6.0 too? or is there different functions? Thanks. "Peter" <myserver@is.cool> wrote in message news:e6vcDzMZGHA.1348@TK2MSFTNGP05.phx.gbl... > Try this: > > http://support.microsoft.com/kb/311289/en-us > > > "Mark" <mkurten@verizon.net> wrote in message > news:ecMXJvMZGHA.3496@TK2MSFTNGP05.phx.gbl... > > Is there a way in asp.net to delete the temporary internet files from IE? > > > > > > Thanks. > > > > > > |
Re: temporary internet files
i found on microsoft site that these functions were introduced in 4.0 so
they should be ok to use in 6.0. thanks again. "Mark" <mkurten@verizon.net> wrote in message news:OSceZCNZGHA.3936@TK2MSFTNGP05.phx.gbl... > In this article it mentions its for IE 5.0. Do you know if they'll work > with 6.0 too? or is there different functions? > > Thanks. > > > "Peter" <myserver@is.cool> wrote in message > news:e6vcDzMZGHA.1348@TK2MSFTNGP05.phx.gbl... > > Try this: > > > > http://support.microsoft.com/kb/311289/en-us > > > > > > "Mark" <mkurten@verizon.net> wrote in message > > news:ecMXJvMZGHA.3496@TK2MSFTNGP05.phx.gbl... > > > Is there a way in asp.net to delete the temporary internet files from > IE? > > > > > > > > > Thanks. > > > > > > > > > > > > |
Re: temporary internet files
Peter,
If he is Mark is asking to be done in asp.net then how does that work? I don't see Mark asking for hosting IE in a desktop app or a console app. ?? SA "Peter" <myserver@is.cool> wrote in message news:e6vcDzMZGHA.1348@TK2MSFTNGP05.phx.gbl... > Try this: > > http://support.microsoft.com/kb/311289/en-us > > > "Mark" <mkurten@verizon.net> wrote in message > news:ecMXJvMZGHA.3496@TK2MSFTNGP05.phx.gbl... >> Is there a way in asp.net to delete the temporary internet files from IE? >> >> >> Thanks. >> >> > > |
Re: temporary internet files
Now I'm confused. My .NET app written in ASP.NET runs on a windows 2003
server, users of the app are using windows 2000 pro and IE 6.0 on their desktops. In the asp.net application i have a buttton that when clicked I want it to erase all the temporary internet files in their local browser. Based on what Peter provided, I have read both links and they appear to be exactly what i need. I'm not a .net expert so I may be missing something. Please let me know. "MSDN" wrote: > Peter, > > If he is Mark is asking to be done in asp.net then how does that work? > I don't see Mark asappking for hosting IE in a desktop app or a console app. > ?? > > SA > > "Peter" <myserver@is.cool> wrote in message > news:e6vcDzMZGHA.1348@TK2MSFTNGP05.phx.gbl... > > Try this: > > > > http://support.microsoft.com/kb/311289/en-us > > > > > > "Mark" <mkurten@verizon.net> wrote in message > > news:ecMXJvMZGHA.3496@TK2MSFTNGP05.phx.gbl... > >> Is there a way in asp.net to delete the temporary internet files from IE? > >> > >> > >> Thanks. > >> > >> > > > > > > > |
Re: temporary internet files
I would say that you can't do what you want to do. The articles pinted to
are for clearing the cache of a WebBrowser Control. A WebBrowser control is a control that supplies web browsing functionality within your Windows forms aplication and does not apply to ASP.net at all. I would be very suprised if it was possible to delete the temporary internet files via a web page written in ASP.net, imiagine the security implications of allowing a web page to change settings in your browser, those ones that try to change your home page are bad enough. "mark kurten" wrote: > Now I'm confused. My .NET app written in ASP.NET runs on a windows 2003 > server, users of the app are using windows 2000 pro and IE 6.0 on their > desktops. In the asp.net application i have a buttton that when clicked I > want it to erase all the temporary internet files in their local browser. > Based on what Peter provided, I have read both links and they appear to be > exactly what i need. I'm not a .net expert so I may be missing something. > Please let me know. > > > "MSDN" wrote: > > > Peter, > > > > If he is Mark is asking to be done in asp.net then how does that work? > > I don't see Mark asappking for hosting IE in a desktop app or a console app. > > ?? > > > > SA > > > > "Peter" <myserver@is.cool> wrote in message > > news:e6vcDzMZGHA.1348@TK2MSFTNGP05.phx.gbl... > > > Try this: > > > > > > http://support.microsoft.com/kb/311289/en-us > > > > > > > > > "Mark" <mkurten@verizon.net> wrote in message > > > news:ecMXJvMZGHA.3496@TK2MSFTNGP05.phx.gbl... > > >> Is there a way in asp.net to delete the temporary internet files from IE? > > >> > > >> > > >> Thanks. > > >> > > >> > > > > > > > > > > > > |
Re: temporary internet files
clickon,
You are right. It can not be done. The question was miss-understood originally. I was hoping to learn something new. Thanks, SA "clickon" <clickon@discussions.microsoft.com> wrote in message news:4DE14081-E2CE-4DE4-9935-99E9346CF1FA@microsoft.com... >I would say that you can't do what you want to do. The articles pinted to > are for clearing the cache of a WebBrowser Control. A WebBrowser control > is > a control that supplies web browsing functionality within your Windows > forms > aplication and does not apply to ASP.net at all. I would be very suprised > if > it was possible to delete the temporary internet files via a web page > written > in ASP.net, imiagine the security implications of allowing a web page to > change settings in your browser, those ones that try to change your home > page > are bad enough. > > "mark kurten" wrote: > >> Now I'm confused. My .NET app written in ASP.NET runs on a windows 2003 >> server, users of the app are using windows 2000 pro and IE 6.0 on their >> desktops. In the asp.net application i have a buttton that when clicked >> I >> want it to erase all the temporary internet files in their local browser. >> Based on what Peter provided, I have read both links and they appear to >> be >> exactly what i need. I'm not a .net expert so I may be missing >> something. >> Please let me know. >> >> >> "MSDN" wrote: >> >> > Peter, >> > >> > If he is Mark is asking to be done in asp.net then how does that work? >> > I don't see Mark asappking for hosting IE in a desktop app or a console >> > app. >> > ?? >> > >> > SA >> > >> > "Peter" <myserver@is.cool> wrote in message >> > news:e6vcDzMZGHA.1348@TK2MSFTNGP05.phx.gbl... >> > > Try this: >> > > >> > > http://support.microsoft.com/kb/311289/en-us >> > > >> > > >> > > "Mark" <mkurten@verizon.net> wrote in message >> > > news:ecMXJvMZGHA.3496@TK2MSFTNGP05.phx.gbl... >> > >> Is there a way in asp.net to delete the temporary internet files >> > >> from IE? >> > >> >> > >> >> > >> Thanks. >> > >> >> > >> >> > > >> > > >> > >> > >> > |
Re: temporary internet files
Mark,
why do you want to delete the Temp Files? SA "mark kurten" <bigman_2@community.nospam> wrote in message news:3EA4CD19-BF8D-46C9-804F-1B9D87BD89D1@microsoft.com... > Now I'm confused. My .NET app written in ASP.NET runs on a windows 2003 > server, users of the app are using windows 2000 pro and IE 6.0 on their > desktops. In the asp.net application i have a buttton that when clicked I > want it to erase all the temporary internet files in their local browser. > Based on what Peter provided, I have read both links and they appear to be > exactly what i need. I'm not a .net expert so I may be missing something. > Please let me know. > > > "MSDN" wrote: > >> Peter, >> >> If he is Mark is asking to be done in asp.net then how does that work? >> I don't see Mark asappking for hosting IE in a desktop app or a console >> app. >> ?? >> >> SA >> >> "Peter" <myserver@is.cool> wrote in message >> news:e6vcDzMZGHA.1348@TK2MSFTNGP05.phx.gbl... >> > Try this: >> > >> > http://support.microsoft.com/kb/311289/en-us >> > >> > >> > "Mark" <mkurten@verizon.net> wrote in message >> > news:ecMXJvMZGHA.3496@TK2MSFTNGP05.phx.gbl... >> >> Is there a way in asp.net to delete the temporary internet files from >> >> IE? >> >> >> >> >> >> Thanks. >> >> >> >> >> > >> > >> >> >> |
| All times are GMT. The time now is 04:48 PM. |
Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.