Web.UI.Controls.TextBox
在我用过的aspx页面中-
<asp:TextBox ID="TextBox1" runat="server" OnTextChanged="tmaintextchanged" ></asp:TextBox>
在我后面的代码中:
<asp:Label ID="show" runat="server" ></asp:Label >
protected void tmaintextchanged(object sender, EventArgs e)
{
show.Text = "working";
}
当我执行此操作时,为什么标签“显示”的文本没有改变。请帮助。我是否缺少文本框的任何配置。