开发者

How can i improve my webpage performance?

开发者 https://www.devze.com 2023-02-23 03:10 出处:网络
I am currently working on a very heavy web page which contains a popup & this popup contains multiple tabs. each tab has multiple buttons on it. Click on a button opens a new popup which in turn o

I am currently working on a very heavy web page which contains a popup & this popup contains multiple tabs. each tab has multiple buttons on it. Click on a button opens a new popup which in turn opens a new popup. I am using RadWindow to open a nested popup. But, I am experiencing really bad performance. Is there any better way available to achieve this with or without us开发者_运维百科ing radwindow to disply popups.


one thing you can do it load control on demand

i.e load control in rad window when you load it .

Control UserControl = LoadControl("usercontrolascx");
PlaceHolder.Controls.Add(FeaturedProductUserControl);

that means you create you have tabs in the user control and dynamically load the usercontrol on tab. that will reduce load.


Step 1: Profile
Step 2: Improve specific areas that need optimization

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号