Squintz
Senior Member
I need help with XML serialization. I have read my book and a few other tutorials but(call me lazy) i cant seem to grasp the concept. I am wanting to use VB.net and the XMLSerialization class to store a small amount of data. I want to have that data categorized by "Time Zones" and under each time zone i want to be able to add multiple "urls" for example
<Servers>
<Eastern Zone>
<URL="www.url1.com">
<URL="www.url2.com"
</Eastern Zone>
<Central Zone>
<URL="www.url1.com">
<URL="www.url2.com"
</Central Zone>
</Servers>
You get the point i think.... In my application i want to be able to add "Time Zones" and add URLS to those time zones. I also want to be able to delete a specific URL from the zone and be able to edit the URLS and Edit the Zone names.
I would like the Zones to be read into a combo box and i would like the URLS to be listed in a list box. I only want the urls of the currently zone to be available in the list box.
Im not asking anyone to do this for me. I simply need some guidence and help understanding how XML serialization works. I need to know how i need to go about solving my problem.
<Servers>
<Eastern Zone>
<URL="www.url1.com">
<URL="www.url2.com"
</Eastern Zone>
<Central Zone>
<URL="www.url1.com">
<URL="www.url2.com"
</Central Zone>
</Servers>
You get the point i think.... In my application i want to be able to add "Time Zones" and add URLS to those time zones. I also want to be able to delete a specific URL from the zone and be able to edit the URLS and Edit the Zone names.
I would like the Zones to be read into a combo box and i would like the URLS to be listed in a list box. I only want the urls of the currently zone to be available in the list box.
Im not asking anyone to do this for me. I simply need some guidence and help understanding how XML serialization works. I need to know how i need to go about solving my problem.