I need to implement an asp.net consumer web part (to be deployed in a
sharepoint page) which will be a row consumer. I do this using the
following code
[ConnectionConsumer ("Row")]
public void SetConnectionInterface( IwebPartRow provider )
{
_provider = provider;
}
The provider web parts are ordinary List View Web parts (eg. a contact
list) and there are multiple providers.
The consumer needs to follow a different line of execution based on
the provider connecting to it.
How do I recognize which is the list view web part that sent a row of
data to consumer.
thanks in advance