It would be much easier if you posted some code (preferably a small test case). I have no idea if you are using
CGI,
CGI::Lite, or any other CGI modules.
That being said one way to see the Content-Range header would be to use %ENV to pull the 'HTTP_CONTENT_RANGE'.
print $ENV{HTTP_CONTENT_RANGE};
Here is a test CGI script:
use warnings;
use strict;
use CGI;
use CGI::Carp qw(fatalsToBrowser);
use Data::Dumper;
my $q = CGI->new;
print $q->header,$q->start_html;
print '<pre>';
print Dumper \%ENV;
print '</pre>';
print "<br>Content-Range: ",$ENV{HTTP_CONTENT_RANGE};
And a small fake request:
use warnings;
use strict;
use LWP::UserAgent;
my $ua = LWP::UserAgent->new;
my $req = HTTP::Request->new(GET => 'http://www.cicisdw.com/foo.cgi');
$req->header( 'Content-Range' => 'bytes 0-499/500' );
my $resp = $ua->request($req);
print $resp->{_content};
grep
One dead unjugged rabbit fish later...
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.