In ItemUpdating, I can get the values of the fields, but I can not get only the updated values.
Is there a better way to do this than the method below?
protected void fwHotelDetails_ItemUpdating(Object sender, FormViewUpdateEventArgs e)
{
TextBox tbName = (TextBox)fwHotelDetails.Row.FindControl("input_name");
MessageLabel.Text = "This works..." + tbName.Text;
}
source
share