hi,
i have an xml file
<?xml version="1.0" ?>
<users>
<User id="u1">
<UserName>user1</UserName>
<Password>pwd1</Password>
</User>
<User id="u2">
<UserName>user2</UserName>
<Password>pwd2</Password>
</User>
</users>
i want to read this file in c#.net and compare the username with username entered in textfield while logging.
can you help me?