VB.NET: Linking Elements and Attributes

toytoy

Well-known member
Joined
Jul 16, 2004
Messages
46
Programming Experience
1-3
Say i have this XML tag...
VB.NET:
<book section=”newspaper”>
	<new id=”100”>China News</new>
	<new id=”101”>Street paper</new>
	<new id=”0”>none</it>
	…….
	<new>….</new>
  </book>
I extract the element "China News" and "Street paper" and populate to the combobox....

Now if i select the "China News", how do i send the id which is "100" to the

server instead of china news...

Thanks
 
Back
Top