日期:2014-05-17 浏览次数:21206 次
在博客园里有位兄弟问了我一个问题,动态创建的控件是如何加载视图状态,还提到ProcessPostData方法的调用。这里我就用TextBox的TextChanged事件来说说视图数据的加载以及事件的触发。
我们首先还是来看一个demo吧:
代码如下:
运行结果如图:
现在我们来修改文本框的值,然后点击按钮提交页面,看看有什么事情发生
TextBox的TextChanged事件这时候发生了,运行结果如图:
现在我们什么也不做,再次点击按钮提交,看看会有什么效果:
这是为什么了,TextBox的TextChanged事件这时候没有触发。
大家是否知道TextBox的TextChanged事件触发的条件了,那好我们今天就一起来看看该事件是如何触发的。
这里我们首先来看看TextBox的定义:
public class TextBox : WebControl, IPostBackDataHandler, IEditableTextControl, ITextControlprotected virtual bool LoadPostData(string postDataKey, NameValueCollection postCollection)
{
base.ValidateEvent(postDataKey);
string text = this.Text;
string str2 = postCollection[postDataKey];
if (!this.ReadOnly && !text.Equals(str2, StringComparison.Ordinal))
{
this.Text = str2;
return true;
}
return false;
}
protected virtual void RaisePostDataChangedEvent()
{
if (this.AutoPostBack && !this.Page.IsPostBackEventControlRegistered)
{
this.Page.AutoPostBackControl = this;
if (this.CausesValidation)
{
this.Page.Validate(this.ValidationGroup);
}
}
this.OnTextChanged(EventArgs.Empty);
}
这里的RaisePostDataChangedEvent方法比较好理解,主要就是调用TextChanged事件方法,而LoadPostData方法中是可以取到textBox当前值(旧值 string text = this.Text;)和post过来的新值( postCollection[postDataKey]),如果当前textbox不是只读,并且新旧值不等的话,则吧新值