gpt4 book ai didi

c# - 如何从 ascx.cs 文件中的 ascx 文件中的 FormView 中的文本框中获取文本值

转载 作者:行者123 更新时间:2023-12-03 19:08:17 26 4
gpt4 key购买 nike

我在这样的 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"];

如何获取值?

最佳答案

你不需要使用Request,你应该可以在后面的代码中直接访问控件,试试:

var value = txtBox1.Text;

关于c# - 如何从 ascx.cs 文件中的 ascx 文件中的 FormView 中的文本框中获取文本值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15096169/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com