Rattlesnake
Well-known member
- Joined
- Dec 23, 2003
- Messages
- 47
Hi ,
I have a ASP.Net 1.1 application that uses an XML file (AppConfig.xml) to read configuration parameters
The XML file looks like this
<AppParameters>
<Global>
<Parameter1 value="1000" />
<Parameter2 value="True" />
<Parameter3 value="Approve" />
</Global>
<OrderList>
<ShowCol6 value="True" />
<ShowCol7 value="False" />
<ShowCol8 value="False" />
<OrderList>
<DeliveryList>
<Parameter1 value="True" />
<Parameter2 value="True" />
<Parameter3 value="500" />
</DeliveryList>
</AppParameters>
It has multiple sections (a section for each application module). Each section has different parameters.
I want to have a ASP.net page that will LOAD and DISPLAY all theses parameters.
I want to be able to modify them and SAVE them back to the XML file
Basically what I am looking for is to recursively read an XML file that has the above structure and be able to update each Parameter.
Thanks for ur help
I have a ASP.Net 1.1 application that uses an XML file (AppConfig.xml) to read configuration parameters
The XML file looks like this
<AppParameters>
<Global>
<Parameter1 value="1000" />
<Parameter2 value="True" />
<Parameter3 value="Approve" />
</Global>
<OrderList>
<ShowCol6 value="True" />
<ShowCol7 value="False" />
<ShowCol8 value="False" />
<OrderList>
<DeliveryList>
<Parameter1 value="True" />
<Parameter2 value="True" />
<Parameter3 value="500" />
</DeliveryList>
</AppParameters>
It has multiple sections (a section for each application module). Each section has different parameters.
I want to have a ASP.net page that will LOAD and DISPLAY all theses parameters.
I want to be able to modify them and SAVE them back to the XML file
Basically what I am looking for is to recursively read an XML file that has the above structure and be able to update each Parameter.
Thanks for ur help