Note that there are some explanatory texts on larger screens.

plurals
  1. POprint preview using javascript
    primarykey
    data
    text
    <p>here i am having <strong>working code for printing and print preview</strong>,but its not working in <strong>Mozilla.</strong> plz let me know that how i make it to work in mozilla also..i want the print <strong>preview as same like the irctc website is having</strong>.</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;Print Preview&lt;/title&gt; &lt;style type="text/css"&gt; @media print { .noPrint { display:none; } } &lt;/style&gt; &lt;script&gt; function printpr() { var OLECMDID = 7; /* OLECMDID values: * 6 – print * 7 – print preview * 1 – open window * 4 – Save As */ var PROMPT = 1; // 2 DONTPROMPTUSER var WebBrowser = '&lt;OBJECT ID="WebBrowser1" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"&gt;&lt;/OBJECT&gt;'; document.body.insertAdjacentHTML('beforeEnd', WebBrowser); WebBrowser1.ExecWB(OLECMDID, PROMPT); WebBrowser1.outerHTML = ""; } &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;form runat="server"&gt; &lt;asp:radiobutton ID="Radiobutton1" class="noPrint" runat="server"&gt;&lt;/asp:radiobutton&gt; &lt;asp:textbox ID="Textbox1" runat="server"&gt;&lt;/asp:textbox&gt; &lt;asp:checkboxlist ID="Checkboxlist1" class="noPrint" runat="server"&gt; &lt;asp:ListItem&gt;gsdghsg&lt;/asp:ListItem&gt; &lt;asp:ListItem&gt;ggsgh&lt;/asp:ListItem&gt; &lt;asp:ListItem Value="gdfgg"&gt;gfghghgf&lt;/asp:ListItem&gt; &lt;asp:ListItem&gt;&lt;/asp:ListItem&gt; &lt;/asp:checkboxlist&gt; &lt;div class="noPrint"&gt;&lt;asp:textbox ID="Textbox2" runat="server"&gt;&lt;/asp:textbox&gt;&lt;/asp:checkboxlist&gt;&lt;/div&gt; &lt;input type='button'class="noPrint" value="Print Preview" onclick="printpr();"&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload