次のようなascxファイルのFormViewにasp:テキストボックスがあります>
<asp:FormView runat="server" ID="myFrmView">
<asp:TextBox runat="server" ID="txtBox1" size="20" MaxLength="150" >
</FormView>
しかし、コードビハインドascx.csファイルでは、テキストボックスから値を取得できません
string name2 = Request.Form["txtBox1"];
値を取得する方法は?