ImageField.ConvertEmptyStringToNull Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value indicating whether empty string ("") values are converted to null
when the field values are returned from the data source.
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 Empty values should be converted to null
; otherwise, false
. The default is true
.
Remarks
Sometimes the user may 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
Note
The ImageField class displays null
as empty strings by default. To display a different value, set the NullDisplayText property.