angiras
09-14-2003, 08:44 AM
I have a XML file as follow :
<appSettings>
<add key="PageSize" value="10" />
<add key="PagerType" value="Symboles" />
<add key="PageSkin" value="True" />
</appSettings>
with only pairs ok key/value attributes
how can I do a Schema :
if @key = "PagesSize" then @value = smallInt
if @key = "PagerType" then @value = string
if @key = "PageSkin" then @value = boolean
? thank you
<appSettings>
<add key="PageSize" value="10" />
<add key="PagerType" value="Symboles" />
<add key="PageSkin" value="True" />
</appSettings>
with only pairs ok key/value attributes
how can I do a Schema :
if @key = "PagesSize" then @value = smallInt
if @key = "PagerType" then @value = string
if @key = "PageSkin" then @value = boolean
? thank you