in reply to netBEUI win32 CGI and other stuff

Don't know if this is your problem, but to make it work I put double backslashes in the path.
open(FILE),'<\\\\server\\path\\to\\file') or die $!; while (<FILE>) { print; } close(FILE);
And it works well for me.
/brother t0mas