Escape sequences are used in a URL to allow characters that may exist in a folder or file name that are not allowed in a URL. The syntax for an escape sequence is defined as a percent sign followed by two hex digits (for example, %A1, %2B, and so on). When you name a folder with a percent sign, if the characters following the percent sign happen to be valid hex characters, the folder name may not be resolved correctly. For example:
� | Naming a folder "100%DAD" may fail, because the two characters following the percent sign are valid hex characters. In this case, the "%DA" sequence may be misinterpreted as character 218, which, depending on the character set being used, may be a "Latin Capital U with Acute". This results in a Web request for a folder name that may not physically exist on the server. |
� | Naming a folder "100%MOM" may work, because the two characters following the percent sign are not valid hex characters. |