Configure Persistence Support in ASP.NET Webforms MaskEdit

30 Jun 20223 minutes to read

The following steps explains the implementation of EnablePersistence in MaskEditTextbox.

  • HTML
  • <ej:MaskEdit ID="mask" MaskFormat="99-999-99999" EnablePersistence="true" runat="server"> </ej:MaskEdit>

    The output for MaskEditTextbox with EnablePersistence before page load and after page load are as follows.

    ASP.NET Webforms MaskEdit Enabled or Disabled ASP.NET Webforms MaskEdit Configure Enabled or Disabled

    Enabled or Disabled

    The MaskEditTextbox control have an option to enable or disable its element. You can set the Enabled property as true to enable the MaskEditTextbox control. Enabled property accepts Boolean value. By default the value of enabled is set as true.

    Configure Enabled or Disabled

    The following steps explains the implementation of Enabled in MaskEditTextbox.

  • HTML
  • <ej:MaskEdit ID="mask" MaskFormat="99-999-99999" Enabled="true" runat="server"> </ej:MaskEdit>

    The output for MaskEditTextbox when “Enabled” is “true” and “Enabled” is “false”.

    ASP.NET Webforms MaskEdit Adjusting Textbox Size ASP.NET Webforms MaskEdit Configure Height and Width

    Adjusting Textbox Size

    The MaskEditTextbox size can be modified by using the Height and Width property. You can customize the size of MaskEditTextbox by using these properties.

    Configure Height and Width

    The following steps explains the implementation of Height and Width in MaskEditTextbox.

  • HTML
  • <ej:MaskEdit ID="mask" MaskFormat="99-999-99999" Width="100" Height="20" runat="server"> </ej:MaskEdit>

    The output for MaskEditTextbox after setting the “Height” and “Width”.

    ASP.NET Webforms MaskEdit Define Value

    Define Value

    The value of MaskEditTextbox can be assigned by using the Value property. The default value for Value property is null.

    Configure Value

    The following steps explains the implementation of Value in MaskEditTextbox.

  • HTML
  • <ej:MaskEdit ID="Mask" Value="1234567" runat="server"></ej:MaskEdit>

    The output for MaskEditTextbox with Value.

    ASP.NET Webforms MaskEdit Configure Persistence Support

    Read Only Support

    The MaskEditTextbox supports read only option. When enabling read only property to the control, the value can’t be changed or editable in the MaskEditTextbox. You can set the ReadOnly property as true to enable this option.

    Configure Read Only

    The following steps explains the implementation of ReadOnly in MaskEditTextbox.

    Add the following code example in your ASPX page to render the MaskEditTextbox control.

  • HTML
  • <ej:MaskEdit ID="mask" MaskFormat="99-999-99999"  ReadOnly="true" runat="server"> </ej:MaskEdit>

    The output for MaskEditTextbox when “ReadOnly” is “true”. The MaskEditTextbox values can not be edited or changed.

    ASP.NET Webforms MaskEdit Error Visibility

    Error Visibility

    The MaskEdit Textbox have an option to show the error value with red color text. It is used to validate the Mask Edit value. You can set the ShowError property as true to enable this option.

    Configure Error Visibility

    The following steps explains the implementation of ShowError in Mask Edit Textbox.

    Add the following code example in your ASPX page to render the Textbox control.

  • HTML
  • <ej:MaskEdit ID="mask" MaskFormat="99-999-99999" Value="1234567" ShowError="true" runat="server"> </ej:MaskEdit>

    The output for Textbox when “ShowError” is “true”.

    ASP.NET Webforms MaskEdit Configure Error Visibility

    ASP.NET Webforms MaskEdit ShowError