Hello,
I have a bunch of old .asp files to refactor, and the first thing I have to do is to replace a bulky <table>
wich is repeated in every file (it's a menu) with a server side include.
the table has no id, but its container has it:
<td id="leftColumn" >
<table>
manually going through the files and replacing the table is unfeasible, AND boring... How would you do this? I have VS2010, Notepad++, but I am open to every advice.
thanks in advance.