default.aspx
1,很好的体现了代码与窗体分离的原则。
2,将用户控件独立于窗体元素
default页面在初始化的时候,通过查找cookie,来给出个性化信息。
private void Page_Load(object sender, System.EventArgs e)
{
// Customize welcome message if personalization cookie is present
if (Request.Cookies["IBuySpy_FullName"] != null)
{
WelcomeMsg.Text = "Welcome " + Request.Cookies["IBuySpy_FullName"].Value;
}
}
这里运用的是Request技术。
Page_Init,Page_Load之间的区别在于,只有在Page_Load中才能确保完全加载各个控件。虽然,我们可以在Page_Init事件中访问控件,但是ViewState并不会被加载,因此各个控件还是保持其默认值,就是说在PostBack后,各个控件还是那些默认值。