What if you want webpart communication before Page_Load? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-20T16:49:21Z http://stackoverflow.com/feeds/question/1608194 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1608194/what-if-you-want-webpart-communication-before-page-load 0 What if you want webpart communication before Page_Load? Earlz http://stackoverflow.com/users/69742 2009-10-22T15:52:03Z 2009-11-30T23:10:58Z <p>Hi, I am needing to create some dynamic controls at Page_Load in the consumer webpart. In the Provider webpart I did some hacking and got it so I could get a controls value before viewstate is loaded in Page_Init. </p> <p>So basically what I want is for webparts to be able to communicate before Page_Load. </p> <pre><code>[ConnectionConsumer("FormRID Consumer","FormRIDConsumer")] public void InitializeProvider(MyControl.IFormRID provider) { theProvider = provider; FormRID = theProvider.FormRID; } </code></pre> <p>That method doesn't get called until after Page_Load. This is a big problem for me because my consumers Page_Load depends on FormRID being set and accurate. I can't move my Page_Load code into Page_LoadComplete either because I am needing to create dynamic controls with viewstate(viewstate isn't restored after Page_Load) </p> <p>So is there some work around I can use so that I can communicate before Page_Load. </p> http://stackoverflow.com/questions/1608194/what-if-you-want-webpart-communication-before-page-load/1608483#1608483 1 Answer by TSmith for What if you want webpart communication before Page_Load? TSmith http://stackoverflow.com/users/192744 2009-10-22T16:40:59Z 2009-10-22T16:40:59Z <p>Hi Earlz, Have you tried subscribing to the web part zone's Init event and placing your InitializeProvider() there? I believe it is fired before OnLoad or OnInit events of user controls and web forms. </p> http://stackoverflow.com/questions/1608194/what-if-you-want-webpart-communication-before-page-load/1823054#1823054 0 Answer by Earlz for What if you want webpart communication before Page_Load? Earlz http://stackoverflow.com/users/69742 2009-11-30T23:10:58Z 2009-11-30T23:10:58Z <p>I ended up having to create my own webpart communication.</p> <p>It ended up much cleaner than ASP.Net's and communication can happen as early as OnInit inside of the webparts.</p>