Tips and tricks for .NET using ASP and VB code.

Prevent some content from printing

<head>
    <style type="text/css">
        @media print
        {
            .NoPrint
            {
                display: none;
            }
        }
    </style>
</head>
<body>
    <table border="2" class="NoPrint">
        <tr>
            <td>
                This content will not be printed.
            </td>
        </tr>
    </table>
    <br />
    <table border="2">
        <tr>
            <td>
                This content will be printed.
            </td>
        </tr>
    </table>
</body>

No comments:

Post a Comment

Search This Blog