am developing a search application in ASP.NET. I am storing the data in an XML file.when i search for data in textbox and click submit button it should search complete XML file and retrieve the data. this is the sample xml data...
<college>
<students>
<student>
<name>harish</name>
<id>002</id>
</student>
<student>
<name>vamshi</name>
<id>003</id>
</student>
</students>
</college>
now when i search in this form "details of vamshi" in textbox it should display the vamshi details.how can i do this..