这很奇怪。我以为我很容易找到这个信息谷歌搜索,但我没有取得多大成功。我想知道的是,可以在Web.config文件的AppSettings部分中使用的有效字符是什么。例如:
<add key="MySpeed" value="100" />
<add key="My.Speed" value="100" />
<add key="My Speed" value="100" />
<add key="Vélocité" value="100" />
是否允许上述所有密钥?
答案 0 :(得分:3)
The Microsoft documentation states only that the key is a String attribute. Nothing more. Their examples do show a key with spaces in the name.