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;
}