When import CVS contacts, the progress bar don' t move
and javascript error is show.
to solve, change
<td height="17" background="<% = strImagePath %>progress_bar_bg.gif"><img src="<% = strImagePath %>progress_bar.gif" alt="Progress Bar" height="17" style="width:0%;"id="progressBar" /></td>
to (add a space between width and id)
<td height="17" background="<% = strImagePath %>progress_bar_bg.gif"><img src="<% = strImagePath %>progress_bar.gif" alt="Progress Bar" height="17" style="width:0%;" id="progressBar" /></td>
and in line ......
vbCrLf & " document.getElementById('progressBar').style.width = '" & percentageCalculate(lngTotalProcessed, lngTotalRecords, 0) & "';" & _