首页上一页 1 下一页尾页 1 条记录 1/1页
《asp.net从入门到精通》(第二版)第9章 例9.3 P190
发表在ASP.NET图书答疑
2011-07-23
是否精华
是
否
版块置顶:
是
否
这此例中,
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
this.bind();
}
}
这里我疏忽了写成
protected void Page_Load(object sender, EventArgs e)
{
this.bind();
}
然后造成在“更新“按钮中,运行时不能更新为修改后的名称,用断点测试跟踪,发现CName得到的值为修改前的值,请问原因,为何没有得到修改后的值而修改成功呢?
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
this.bind();
}
}
这里我疏忽了写成
protected void Page_Load(object sender, EventArgs e)
{
this.bind();
}
然后造成在“更新“按钮中,运行时不能更新为修改后的名称,用断点测试跟踪,发现CName得到的值为修改前的值,请问原因,为何没有得到修改后的值而修改成功呢?