Hi There.

In internet explorer, this code:
Code:
    for (int i=0; i<=Files.Length-1; i++) {
	 if (Files[i].Extension.ToUpper() == ".CPD"){
      txtListing.Text += "<tr><td><img src='images/file.gif'><a href='/cpthandler/SVGgraph/svgGraph.aspx?cptFilePath="+strDir+"\\"+Files[i].Name+"' target='_blank'>"+Files[i].Name+"</a></td><td valign='bottom'>"+Files[i].LastWriteTime+"</td></tr>";
     }
Makes this link:
http://149.136.90.51/cpthandler/SVGg...101\99-132.CPD


In Netscape, this code:
Code:
    for (int i=0; i<=Files.Length-1; i++) {
	 if (Files[i].Extension.ToUpper() == ".CPD"){
      txtListing.Text += "<tr><td><img src='images/file.gif'><a href='/cpthandler/SVGgraph/svgGraph.aspx?cptFilePath="+strDir+"\\"+Files[i].Name+"' target='_blank'>"+Files[i].Name+"</a></td><td valign='bottom'>"+Files[i].LastWriteTime+"</td></tr>";
     }
Makes this link:
http://149.136.90.51/cpthandler//cpt...3.4\99-160.CPD

Notice how the link in crappy old netscape (version 4.7 & 6.1) has the folder name listed in there twice....
that is a problem for me.

Any idea why it's happenin'?

Thanks,

Paul