分成两个节点写,和写在一个节点里有什么区别
比如
<configuation>
<system.web>
<authentication mode="Forms">
<authorization>
<deny user="?">
</authorization>
</system.web>
</configuation>
和
<configuation>
<system.web>
<authentication mode="Forms">
</system.web>
<system.web>
<authorization>
<deny user="?">
</authorization>
</system.web>
</configuation>
两个有区别嘛