在ItemUpdating上,我可以检索字段值,但不能仅检索更新的值。

是否有比下面的方法更好的方法呢?

protected void fwHotelDetails_ItemUpdating(Object sender, FormViewUpdateEventArgs e)
{
    TextBox tbName = (TextBox)fwHotelDetails.Row.FindControl("input_name");
    MessageLabel.Text = "This works..." + tbName.Text;
}

最佳答案

是的事件处理程序的第二个参数(FormViewUpdateEventArgs e)具有以下属性:


按键
新价值
旧价值观


有关msdn的更多信息

希望这可以帮助

08-25 15:56