Hello
is it possible to add an ASP header on a website, just modifying the settings of IIS for that website and without changing the code in the files served by the web server?
Let's say I have a htm/asp website where I can't touch the files (too many files to be changes). I'd like to add an ASP page as header for each page, that is a page that would be on top of each page and therefore executed before the page itself.
Example: test.asp is on the server and header.asp is the header page. Normally, when the users calls www.site.com/test.asp, this file is executed. By making the requested change, I'd like to execute header.asp and then test.asp. It is like test.asp is appended to header.asp. And this for any files called by the user.
I see that IIS can add a html footer: my goal instead is to add an .asp header.
Thanks