In ASP.NET & C#.NET,
There is one dropdownlist, textbox & button controls in page.
My xml look like...
<emp>
<empdetails>
<ename>aaa<\ename>
<age>25<\age>
<city>chennai<\chennai>
<\empdetails>
<empdetails>
<ename>bbb<\ename>
<age>25<\age>
<city>chennai<\chennai>
<\empdetails>
</emp>
Now dropdownlist contains 3 values like ename, age & city.
Now I want to select any one (like name or age or city), And continuously i'm giving value in textbox. It means, i select name in dropdown, and give value "aaa" in textbox. Then I click button control.
Now my gridview will show the details of which employee named "aaa" and them full record. I mean, the output should be display
"aaa 25 chennai"
Earliest reply will be more helpful. Thanks guys