Coder DefaultCharactersAllowedInPostedForm Property C# API
Gets a string containing all the characters that, by default, are allowed to be posted in a Form.

Namespace: Facilita.Web
Assembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.5.77 (1.0.0.0)
Syntax

public static string DefaultCharactersAllowedInPostedForm { get; }

Field Value

A string containing all the characters that, by default, are allowed to be posted in a Form.
Remarks

By default, a character will be percent-encoded within a form if it is:
  • Outside the ASCII range OR
  • Not an alpha-numeric character AND not in this list of allowed characters

By default, the allowed list of characters is as follows:

CharacterName
' 'space
'-'hyphen
'_'underscore
'.'full stop
'*'asterisk
See Also