According to the user Rhys in this post Sharepoint multiple connections to a web parts you need to configure your providers to point to a specific consumer method. How do i do said configuration to the providers?

link|improve this question
feedback

1 Answer

Web part connections are very loosely coupled. The provider part exposes a method, marked with the ConnectionProvider attribute, that indicates it can provide information defined by a specific interface. The consumer part exposes a method, marked with the ConnectionConsumer attribute, that indicates it can consume information defined by a specific interface. When the provider and consumer use the same interface, they can communicate with each other. The communication is managed by the WebPartManager, not the web parts themselves.

This walkthrough should fill in the details and help you get started: http://msdn.microsoft.com/en-us/library/ms469765.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.