I have a problem, that almost same with you.
I have to make a listfield that contains student's names from xml.
When I click a name, so new screen will appear with the detail of the student.
the example of listfield on screen:
Ahmad
Salman
after I click Salman it will appear like this:
Student Number: 51
Name: Salman
Address: India
Major: Physics
here is the xml file
Code:
<?xml version="1.0"?>
<students>
<student>
<id>50</id>
<name>Ahmad</name>
<address>Pakistan</address>
<major>Management</major>
</student>
<student>
<id>51</id>
<name>Salman</name>
<address>India</address>
<major>Physics</major>
</student>
</students>
can you help me?