TemplateField.ConvertEmptyStringToNull Property

Definition

Gets or sets a value indicating whether the value that the TemplateField object is bound to should be converted to null if it is Empty.

public:
 virtual property bool ConvertEmptyStringToNull { bool get(); void set(bool value); };
public virtual bool ConvertEmptyStringToNull { get; set; }
member this.ConvertEmptyStringToNull : bool with get, set
Public Overridable Property ConvertEmptyStringToNull As Boolean

Property Value

true if the value that the TemplateField is bound to should be converted to null when it is Empty; otherwise, false. The default value is false.

Remarks

This property applies to two-way data-binding statements made in the template. The conversion is done after extracting the values from the two-way bound template, and before passing the values to the data source for an update or insertion operation.

For example, a user might enter an empty string ("") for a field value when updating or inserting records. Use the ConvertEmptyStringToNull property to specify whether an empty string value is automatically converted to null when the data field is updated in the data source.

Applies to

See also