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

link|improve this question
2  
Your question is extremely hard to understand. – Pointy Apr 8 '11 at 15:41
Is that an ASP.Net tag? – Jim Blackler Apr 8 '11 at 17:24
If I understood correctly, what is the need of firing click on page load. Simply load the function on page load. And call that function on button onclick also. – Vikas Apr 8 '11 at 18:02
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.