我正在使用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。 感谢
答案 0 :(得分:4)
您需要添加runat="server"
。否则输入将无法在服务器端显示,您需要通过Request.Form
集合访问已发布的值。
<input runat="server" type="text" id="txtBoxInput"/>