I would rewrite the whole page so that it is a perl CGI script, using perl to output all of the required HTML tags. To make things <i>real</i> easy, I would use the CGI module that comes with perl. You create a new CGI object that is your page. Then, when you want to print some HTML you use the CGI objects functions to print it. For example, instead of "print '<B>some text</B>'", instead you can "print $MyCGI->bold('some text')". If you want to print the HTML header, you "print $MyCGI->header". It makes things very easy.<br><br>Otherwise, it sounds like what you are saying is "I have a table displayed. I want to click a link and update the table displayed on the current page with the file listing". As discussed in another thread, you can't do this... The solutions offered so far will replace your current page with the output from the CGI script.<br><br>So, I'd rewrite the whole page in perl. In the long run, you are going to see a lot of benefits.<br><br>Before you do, though, you need to set up your web server so that it executes perl programs (with a .pl extension) instead of passing the contents of the script to the browser. What web server are you using? <p> <br><a href=mailto: > </a><br><a href= > </a><br>--<br>
0 1 - Just my two bits