[求助]如何触发TextChanged事件?
如何触发TextChanged事件? 我的代码是这样的:
protected void Button1_Click(object sender, EventArgs e)
{
TextBox1.Text = "123";
}
protected void TextBox1_TextChanged(object sender, EventArgs e)
{
Response.Write("456");
}
但是没有用。
[此贴子已经被作者于2006-10-8 11:31:13编辑过]