一个让人崩溃的TextBox_changed问题
我真是无语了弄了两天 还没弄好TextBox_changed问题我把<asp:TextBox id="TextBox1" runat="server" AutoPostBack="true" /> 这么写了 没反应
好吧 ~~~可能是我第一次写网页不太懂吧 就来个后台的
放了个Label1 和TextBox1
textbox事件代码如下
private void InitializeComponent()
{
this.TextBox1.TextChanged += new System.EventHandler(this.TextBox1_TextChanged);
this.Load += new System.EventHandler(this.Page_Load);
}
private void TextBox1_TextChanged(object sender, System.EventArgs e)
{
Label1.Text="Changed!";
}
再把AutoPostBack="true"
又没反应
~~~~崩溃~~~~~ 上网到处查都没找到
谁能帮帮我啊.......