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";
}
これを実行しているときに、ラベル「show」のテキストが変更されないのはなぜですか。親切に助けてください。テキスト ボックスに設定がありませんか。