1

次のコード をコピーして貼り付けると、ここweb.configからファイルを練習しています:

<configSections>
  <section name ="ProductSection" type ="<ProductSection" />
</configSections>

<ProductSection>
<gridSettings title ="Latest Products" count ="20"></gridSettings>
<color background="FFFFCC" foreground="FFFFFF"></color>
</ProductSection>

次のような いくつかのエラーが発生しました。

  • タグが 2 行目で閉じられていませんでした。
  • </section>不足している。
  • 名前空間'section'に子要素を含めることはできません。

これらのエラーを取り除き、スムーズに実行する方法。

4

2 に答える 2

6

それ以外の

<section name ="ProductSection" type ="<ProductSection" />

試す

<section name ="ProductSection" type ="&lt;ProductSection" />

HTML と XML の特殊文字はどれですか? を参照してください。

于 2013-10-30T09:37:16.400 に答える
1

あなたはこれを持っています:

type ="<ProductSection"

これは XML では無効です。「<」文字を削除してください。

<section name ="ProductSection" type ="ProductSection" />

実際に「<」を含むものがある場合は、次のようにエンコードする必要があります。

<section name ="ProductSection" type ="&lt;ProductSection" />

ただし、実際のセクションは<ProductSection>おそらくあなたのタイプミスです。

于 2013-10-30T09:37:01.240 に答える