Click here to Skip to main content
15,919,423 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I used updatepanel to use updateprogress but soo many of problems araising while using updatepanel like accordion is not triggering so please give me some idea to put updateprogress without the help of updatepanel
Posted
Comments
BillWoodruff 20-Nov-14 8:16am    
"accordion is not triggering" ... what does this mean ?

1 solution

XML
Hi,

If you want to show UpdateProgress at the first time page load, you can check the below code.


JavaScript
<script type="text/javascript">



function pageLoad()
{


        var updateProgress = $get('<%= UpdateProgress1.ClientID %>');
        var dynamicLayout = '<%= UpdateProgress1.DynamicLayout.ToString().ToLower() %>';


        if (dynamicLayout) {
            updateProgress.style.display = "block";
        }
        else {
            updateProgress.style.visibility = "visible";
        }
}

</script>
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900