Okay, I'm running the latest ActivePerl release (5.6) under Windows 2000 Server. I'm trying to pass parameters across the header thus: URL: http://localhost/test.asp?t=Test <%@ Language = "PerlScript" %> <% use CGI; $q = new CGI; $target = $q->param('t'); die "FsERROR: No target specified" unless( defined $target ); print ("Target is $target.\n"); %> And, I'd expect to get "Target is Test". However, what I'm getting is an error page with the error message "FsERROR: No target specified", which means to me that the parameter is not being received through the query string. Anyone run into this problem and know how to fix it? Thanks. _______________________________________________ ActivePerl mailing list [EMAIL PROTECTED] http://listserv.ActiveState.com/mailman/listinfo/activeperl
