/// <summary> /// Handles the ImageUploaded event of the imgupImage control. /// </summary> /// <param name="sender">The source of the event.</param> /// <param name="e">The <see cref="ImageUploaderEventArgs"/> instance containing the event data.</param> protected void imgupImage_ImageUploaded( object sender, ImageUploaderEventArgs e ) { if ( e.BinaryFileId.HasValue ) { TransactionImagesState.Add( e.BinaryFileId.Value ); BindImages(); } }