Hi am using xml file given below,i want to parse html file .
<Description>
<Fullcontent>
<div id="container" class="cf">
<link rel="stylesheet" href="http://dev2.mercuryminds.com/imageslider/css/demo.css" type="text/css" media="screen" />
<ul class="slides">
<li>Sonam Kapoor<img src="http://deys.jpeg"/></li>
<li>Amithab<img src="http://deysAmithab.jpeg"/></li>
<li>sridevi<img src="http://deyssridevi.jpeg"/></li>
<li>anil-kapoor<img src="http://deysanil-kapoor.jpeg"/></li>
</ul>
</div>
</Fullcontent>
</Description>
i want bind image with name
You can install HtmlAgilityPack from NuGet (just search for agility). Parsing is also simple. Here is way for selecting image tags and taking source attributes:
Btw looks like direct selection of attributes is not supported yet.