Tagged Questions
1
vote
1answer
291 views
At which point in the lifecycle does GetConnectionInterface get called?
I have this method on a webpart:
private IFilterData _filterData = null;
[ConnectionConsumer("Filter Data Consumer")]
public void GetConnectionInterface(IFilterData filterData)
{
_filterData = ...
0
votes
3answers
531 views
What if you want webpart communication before Page_Load?
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 ...