I Need to Develop an http://asp.net/ page that reads html files in a folder and displays list of duplicate ids. ie. Same id used with-in one or more html files
a.html
<div id=”a1”> </div> <ul id=”a2”> <li> Hello </li> <li> how are you</li></ul>
b.html
<ul id=”a1></ul> <div id=”a3”> <ul> <li> Val 1</li><li>Val2</li> </ul></div>
The program should display the following result:
ID Files
A1 a.html, b.html
Any one help me Please.
Thanks in Advance.