我在 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"];
如何获得价值?