Ulhas Tuscano
Ulhas Tuscano

Reputation: 5620

How can i improve my webpage performance?

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 using radwindow to disply popups.

Upvotes: 0

Views: 204

Answers (2)

Pranay Rana
Pranay Rana

Reputation: 176886

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.

Upvotes: 1

Corey Sunwold
Corey Sunwold

Reputation: 10254

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

Upvotes: 0

Related Questions