> -----Original Message-----
> From: FLAHERTY, JIM-CONT [mailto:[EMAIL PROTECTED]]
> Sent: Friday, July 12, 2002 7:25 AM
> To: Beginners (E-mail)
> Subject: disable printing an output of a perl script file
> 
> 
> I have a quiz program, the script queries the DB and print to 
> the browser a
> test for the student to take. I would like to prevent them 
> from printing
> that test. All my clients are IE 6.0 
> 

You can add something like this to the <head> section of your page:

   <style> @media print { BODY { display: none; } } </style>

But that is easily defeated of course, using any number of methods.

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to