Btw, please note that you are instanciating a new Textbox before calling FindControl, but that's not needed as FindControl itself returns a reference to a control instance...
I mean, the code would just look like:
TextBox t3;
t3 = (TextBox)Master.FindControl("MyTextbox");
or simply (which is equivalent):
TextBox t3 = (TextBox)Master.FindControl("MyTextbox");
Regards. -LV
Julio P. Di Egidio
Software Analyst / Programmer
http://julio.diegidio.name
(Peace X Love] = [++1)