Hi...
I have the following XML file :
<?xml version="1.0"?>
<QuestionBank>
<Question ID="32" Owner="Thuraivan" Date="30/11/2001"
Visibility = "0">
<TextOfQuestion> This is the text of First
Question </TextOfQuestion>
<Answer Owner ="Ram"> This is an Answer </Answer>
</Question>
<Question ID="33" Owner="Ravi" Date="16/12/2001"
Visibility = "1">
<TextOfQuestion> This is the text of Second
Question </TextOfQuestion>
<Answer Owner ="Keith"> This is an Answer </Answer>
</Question>
</QuestionBank>
Supposing if i want to retrieve the values of the ChildNodes of <Question> based on a "From Date" and "To Date", which is collected from the user at Run-time, how should i go about doing it...
Thanks...
Thuraivan
I have the following XML file :
<?xml version="1.0"?>
<QuestionBank>
<Question ID="32" Owner="Thuraivan" Date="30/11/2001"
Visibility = "0">
<TextOfQuestion> This is the text of First
Question </TextOfQuestion>
<Answer Owner ="Ram"> This is an Answer </Answer>
</Question>
<Question ID="33" Owner="Ravi" Date="16/12/2001"
Visibility = "1">
<TextOfQuestion> This is the text of Second
Question </TextOfQuestion>
<Answer Owner ="Keith"> This is an Answer </Answer>
</Question>
</QuestionBank>
Supposing if i want to retrieve the values of the ChildNodes of <Question> based on a "From Date" and "To Date", which is collected from the user at Run-time, how should i go about doing it...
Thanks...
Thuraivan