Hi ks2007
It may be to late now but here it goes.
You can write a helper class witch contains the FindControl method then in code behind you do the following:
//Invoke a new instance of your helper class
FindControls findControl = new FindControls();
this assumes that your helper class is named FindControls.
then you simply in stead of running FinControl() framework method you run following
Label label= findControl.FindControlByID(Page.Controls, "ControlName") as Label;
findControl = new instance of your helper class
FindControlByID(Page.Controls, "ControlName") = the method in your helper class
now you have a "new" label control in you code behind called label... you can use it like this.
label1.Text = label.Text; ...just like any other label control in your app.