Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Updating .config files with autodeploy

Status
Not open for further replies.

AlessandroR

Programmer
Apr 30, 2002
8
0
0
IT
I have an autodeploy application (a X.Exe file executed from IE) which download on the client a X.Exe.Config file, since I've put in web.config the following item:
<configuration>
<system.web>
<httpHandlers>
<add verb=&quot;*&quot; path=&quot;*.config&quot; type=&quot;System.Web.StaticFileHandler&quot; />
</httpHandlers>
</system.web>
</configuration>

My problem is: when I change this .config file, how can the client get the new version?
(Without clearing the IE cache)

I was looking for an alternative to System.Web.StaticFileHandler, but I can't find anything. I can even find out where System.Web.StaticFileHandler is defined ... what it is ... it should be a class ...

Thanks for help
Alessandro
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top