What if you want webpart communication before Page_Load? - Stack Overflow most recent 30 from stackoverflow.com2010-03-20T16:49:21Zhttp://stackoverflow.com/feeds/question/1608194http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1608194/what-if-you-want-webpart-communication-before-page-load0What if you want webpart communication before Page_Load?Earlzhttp://stackoverflow.com/users/697422009-10-22T15:52:03Z2009-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#16084831Answer by TSmith for What if you want webpart communication before Page_Load?TSmithhttp://stackoverflow.com/users/1927442009-10-22T16:40:59Z2009-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#18230540Answer by Earlz for What if you want webpart communication before Page_Load?Earlzhttp://stackoverflow.com/users/697422009-11-30T23:10:58Z2009-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>