my question in a nutshell is : how not to fire when clicking a button but when the page is completely to loaded ?
when i click a link in masterpage , it should show a report in content page. I've put a updateProgress to show "please wait", so i put a button in content page wich when onclick, its fill the report with a repeater wich is in updatepanel linked with updateProgress
so clicking the button works,it shows "please wait" and the report but i don't want to click the button , i want to fire it automaticaly, so i've put
<script type="text/javascript">
window.onload = function() {
var bouton = document.getElementById('<%= Button1.ClientID %>').click();
}
</script>
that works like 1 time out of 10.
i would like to know how to fire the report filling and so show the updateprogress automaticaly after page is loaded
thanks