Click here to Skip to main content
15,895,011 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi i have an application to show some result so iam using below code(AJAX) with animation.in gridview i have data so when i click in button in gridview to show some popup items but it showing popup very slow. after some 15 seconds.so i want the pop up to show faster within less than 3 seconds .


in local and staging it is working fast and with no issues.but in production it is very slow.so what to do to run faster the application?
do i have to change fps value or duration value what to do ?
XML
<FadeIn Duration=".5" Fps="5" /> 


 <asp:ModalPopupExtender ID="ModalPopupExtender1" runat="server"  TargetControlID="btnShowPopup" PopupControlID="pnlpopup"
                                                                        CancelControlID="btnCancel" BackgroundCssClass="modalBackground" ><animations>
                                                                             <onshowing>
                                                                                  <fadein duration=".5" fps="5" />
                                                                             </onshowing>
                                                                             <onshown>
                                                                                  <fadein duration=".5" fps="5" />
                                                                             </onshown>
                
                                                                             <onhiding>
                                                                                  <fadeout duration=".5" fps="5" />
                                                                             </onhiding>
                                                                             <onhidden>
                                                                                  <fadeout duration=".5" fps="5" />
                                                                             </onhidden>
                                                                         </animations>


please help .................
Thanks
Srinivas
Posted
Updated 19-Dec-12 5:38am
v4
Comments
chester_it21 19-Dec-12 22:54pm    
hi, it could be a code in the application is correct, it may be caused by bandwich capacity that is given to your application ..
or you have to start reading articles about how to make a fast asp.net application, both performace, scalable, and its security level ...
[no name] 20-Dec-12 0:59am    
Hi, if you are getting data from database, first check how much time your query will take to fetch data from database.

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