How can I check whether the page has finished loading? When it has, how can I execute a method already created in the C# code behind for that page?
I would like to o
You can do it in DOM javascript:
window.onload = function() { download() }