I've been trying to setup a Cross Page Connection between web parts to no avail. I've learned that you must deploy the web parts to the GAC to be able to use them in FrontPage, which you have to use if it is going to be a cross page connection.
If I understand correctly you can use any of the following interface combinations:
IRowProvider --> IFilterConsumer
IRowProvider --> IParametersInConsumer*
IFilterProvider --> IFilterConsumer
IParametersOutProvider --> IParametersInConsumer*
IParamtersInProvider --> IParametersInConsumer*
I figure the most flexible option would be to use the IRowProvider --> IParameterInConsumer
Whenever I try to point the connection to the second page, FrontPage tells me there are no webparts that are compatible. I have tried the interface combinations marked with an (*), but none of them seem to work for me. I've taken the code samples from:
msdn.microsoft.com/.../...ParametersInConsumer.asp
&
msdn.microsoft.com/.../smpcomiIRowProvider.asp
Any simple sample code or tips to get this cross page connection working would be most helpful!