Give me an idea for ths:
1. There is a xml file which maintains some data.
2. During the Load event the XML content should be displayed with xslt sheet in any control. Which control is suitable for ths?
3. When i click the Edit button, it should be editable in the control and also reflected(saved) in the XML file.
4. When i click the Add button, a new controls should be displayed to add the new values.
Sample XML:
<Tasks>
<Task>
<Name>Task-A</Name>
<Description>Description about Task-A </Description>
</Task>
<Task>
<Name>Task-B</Name>
<Description>Description about Task-B</Description>
</Task>
<Task>
<Name>Task-C</Name>
<Description>Description about Task-C</Description>
</Task>
</Tasks>
my UI is like
Add button Edit Button
Task-A
- Description about Task-A
Task-B
- Description about Task-B
Task-C
- Description about Task-C
Regards
Nandha Kumar,