Dear Pascual,
Thanking you for your reply,
I've a xml file which is actually just a model for creating a form which will permit users filling it.
Any change in the xml should change the interface form. The XML file is:
<Discussions>
<Issue issueID="" composer="" date="">
<Proposition composer="" date="" level="">
<Agreement composer="" date="" level=""></Agreement>
<Disagreement composer="" date="" level=""></Disagreement>
<Clarificationrequest composer="" date="" level=""></Clarificationrequest>
</Proposition>
</Issue>
</Discussions>I want from this structure, to produce a form with a Label and TextField for letting the user enter information for "Proposition","Agreement" and ... elements,
and if an element such as "Clarification Request" is removed from xml document, it will be not displayed in the next form.
I think the only way to this, is that I parse the xml file, and create controls dynamically, and as I've also heared to much that LINQ facilitate xml handling, I'm
looking for a solution for creating through LINQ dynamically controls based on the XML file.
Thanks in advance