g_p_k,
Add the following line in your onload event to prevent the page from caching.
Response.Cache.SetCacheability(HttpCacheability.NoCache)
This will cause the page to always download the latest copy of your document. One caveat, it will prevent the page from caching anything else. So use with caution.
Hope this helps,
--Scott