I want to know if this example is possible, and what the performance implication would be?
First a question about static content and Page Life cycle. I have a page "Latest_quote". The page is static content that only needs to be updated once an hour. I want it to be a static .html page, that is returned as soon as it is hit so there should be no need to render or parse the html file, so the latency is as low as possible. So it shouldn't be waiting for a script to finish running or parsing the html page just returning static content. But I want a C# script to track how many visitors the page gets, but this script should run after or at the same time as the static content is being returned. Is this possible?
I would also like a timer job to run once an hour that checks and updates the static page. Can I have a timer job run in C# an ASP.NET or Razor site? and would the page go down while it is being over ridden with the new information?