Creating connected webparts involves the below steps. Create an Interface public interface ITextBoxStringCreate a property which would be returning a reference to the interface. public interface ITextBoxString
{
string TextBoxString { get; set; }
}
Provider Webpart
Implement the interface.
...