试试通过CSS设置.<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title></title>
<style type="text/css" media="screen">
/* screen layout */
body, html {
  background: #ccc;
  padding: 0;
  margin: 0 0 0 30px; /* 20px left margin */
}
p {
  font-size: 20px; /* larger font-size */
}
</style><style type="text/css" media="print">
/* print layout */
body, html {
  margin: 0; /* no left margin at all */
}
p {
  font-size: 12px; /* smaller font-size */
}
</style>
</head><body>
<p>A sample sentence</p>
</body>
</html>

解决方案 »

  1.   

    MSDN上的这篇文章你参考一下.http://msdn.microsoft.com/zh-cn/library/ms159195(SQL.90).aspx
      

  2.   

    试试这个
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    <html>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
            <title>Untitled Document</title>
        </head>
        <style type="text/css" media=print>
            .noprint {
                display: none
            }
        </style>
        <script defer>
            function SetPrintSettings(){
                // -- advanced features
                factory.printing.SetMarginMeasure(2) // measure margins in inches
                factory.SetPageRange(false, 1, 3) // need pages from 1 to 3
                factory.printing.printer = "HP DeskJet 870C"
                factory.printing.copies = 2
                factory.printing.collate = true
                factory.printing.paperSize = "A4"
                factory.printing.paperSource = "Manual feed"
                
                // -- basic features
                factory.printing.header = "This is MeadCo"
                factory.printing.footer = "Advanced Printing by ScriptX"
                factory.printing.portrait = false
                factory.printing.leftMargin = 1.0
                factory.printing.topMargin = 1.0
                factory.printing.rightMargin = 1.0
                factory.printing.bottomMargin = 1.0
            }
        </script>
        <script language="javascript">
            function printsetup(){
                // 打印页面设置
                wb.execwb(8, 1);
            }
            
            function printpreview(){
                // 打印页面预览
                
                wb.execwb(7, 1);
                
            }
            
            function printit(){
                if (confirm('确定打印吗?')) {
                    wb.execwb(6, 6)
                }
            }
        </script>
        </head>
        <body>
            <OBJECT classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2" height=0 id=wb name=wb width=0>
            </OBJECT>
            <input type=button name=button_print value="打印" class="noprint" onclick="javascript:printit();">
    <input type=button name=button_setup value="打印页面设置" class="noprint" onclick="javascript:printsetup();">
    <input type=button name=button_show value="打印预览" class="noprint" onclick="javascript:printpreview();">
    <input type=button name=button_fh value="关闭" class="noprint" onclick="javascript:window.close();">
            <br>
        </body>
    </html>