0

我正在使用 Microsoft Visual Web developer 2010。我有一个使用以下代码的文本框 (txtBoxInput):<input type="text" id="txtBoxInput"/>

我还有一个使用以下代码的 aspn.net 按钮(btnTest):

<asp:Button ID="btnTest" runat="server" onclick="Button1_Click" Text="Button"/>

以及 btnTest 事件中的代码:

protected void Button1_Click(object sender, EventArgs e)
{
    string test = txtBoxInput.Value = "test123";
}

但是没有检测到 txtBoxInput 控件。有没有办法编写这个 C#/aspn.net 代码可以将此字符串(测试)放入 txtBox.Value。谢谢

4

1 回答 1

4

您需要添加runat="server". 否则输入在服务器端将不可见,您需要访问已发布的值槽Request.Form集合。

<input runat="server" type="text" id="txtBoxInput"/>
于 2013-08-29T16:23:13.647 回答