http://p2p.wrox.com/content/articles...spnet-webforms
I followed the directions in the above article from this book, I ran into many questions. When we have an interface for the view, assuming that we need to have all the controls the page has in the interface.
In the code behind if we implement the interface, then how do we implement all the properties and methods in the interface in code behind?
In the article, we don't see any implementation for
event EventHandler DataRequested;
List<string> Data { get; set; }
in the code behind where it throws error.