2009-09-25 67 views
3

在ItemUpdating上,我能夠檢索字段值,但是我無法只檢索更新的值。當我處理表單時,如何獲取更新的FormView值?

有沒有更好的方法來做到這一點比下面的方法?

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

回答

3

是的。事件處理程序的第二個參數(FormViewUpdateEventArgs五)具有以下特性:

  • NewValues
  • OldValues
msdn

希望

更多信息這有助於

相關問題