Run webpage from cron

I am running into a issue.

How would you run a http:// page from cron?

I tried directly from cron but no luck.

I tried a sh script with no luck.

#!/bin/sh
PERL_PATH=/usr/bin/perl
$PERL_PATH "/fullpath/cgi-bin/search/indexer.cgi?login=indexer&pwd=spider"

and

#!/bin/sh
PERL_PATH=/usr/bin/perl
$PERL_PATH "http://site/cgi-bin/search/indexer.cgi?login=indexer&pwd=spider"

I get file not found.

What do you mean by "run a web page"?

Web pages are files to be displayed by a browser, not run by an interpreter.