Using Update Panel in sitefinity

Using Update Panel in sitefinity

Posted on August 26, 2011 0 Comments

The content you're reading is getting on in years
This post is on the older side and its content may be out of date.
Be sure to visit our blogs homepage for our latest news, updates and information.

If you try to use the update panel in Sitefinity and check Include Script Manager setting in page properties you will run into a little problem. Apparently, the update panel control expect to have registered a script manager on the page during the execution of OnInit method.  This is a little problem because there is no way to know if there is a script manager added on the page's markup before OnInit method unless you search all the hierarchy of the controls on this page. As you can imagine this could slow down the page request execution.  One of the possible solutions could be modifying a little the Update panel like this :

 

public class SitefinityUpdatePanel : UpdatePanel
   {
 
       protected override void OnInit(EventArgs e)
       {
           this.Page.InitComplete += new EventHandler(Page_InitComplete);
            
       }
 
       void Page_InitComplete(object sender, EventArgs e)
       {
           base.OnInit(e);
       }
   }
 

 Then all you need is to replace update panel usages with the new one and all should work like a charm.

 

progress-logo

The Progress Team

View all posts from The Progress Team on the Progress blog. Connect with us about all things application development and deployment, data integration and digital business.

Comments

Comments are disabled in preview mode.
Topics

Sitefinity Training and Certification Now Available.

Let our experts teach you how to use Sitefinity's best-in-class features to deliver compelling digital experiences.

Learn More
Latest Stories
in Your Inbox

Subscribe to get all the news, info and tutorials you need to build better business apps and sites

Loading animation