I'm converting an old asp.net (v 1 or 2) web site to run under .net 4.5 as a web application.
My solution was to move the user control event handler delegates that were causing the problem to a separate physical file:
//move this line to a new physical file:
public delegate void LocationSearchedEventHandler( object sender );
public partial class controls_Drives_LocationAddPanel : UserControl
{
public event LocationAddedEventHandler LocationAdded;
protected virtual void OnLocationAdded(LocationAddEventArg e)
{