需要从我的aspx组件打印swf静态图像

时间:2011-04-07 01:00:40

标签: c# asp.net printing flash

我的应用程序中有一个组件,在我的aspx页面中显示x个图像来自转发器的数据源。我想创建一个按钮并使此按钮打印此图像。我在我的aspx中尝试过window.print(),但它只打印HTML信息。

1 个答案:

答案 0 :(得分:0)

据我所知, 你无法直接打印到打印机。 你需要显示单独的窗口,只有img用div标签包围。 这是例子:

<%@ Page Language="C#" MasterPageFile="~/MasterPage2.master" AutoEventWireup="true" CodeFile="PrintImage.aspx.cs" Inherits="PrintImage" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" Runat="Server">
    <script language="javascript" type="text/javascript">
        function PrintImage()
        {
            printWindow = window.open ("", "mywindow", "location=1,status=1,scrollbars=1,width=600,height=600");
            printWindow.document.write("<div style='width:100%;'>");
            printWindow.document.write("<img id='img' src='" + document.getElementById('ctl00_MainContent_ImgMyPhoto').src + "'/>");
            printWindow.document.write("</div>");
            printWindow.document.close();
            printWindow.print();
        }
    </script>
    <div>
        <asp:Image ID="ImgMyPhoto" runat="server" Width="100px" Height="90px" />
        <br />
        <input type="button" id="btnPrint" value="Print Image" onclick="PrintImage()" />
    </div>
</asp:Content>

参考:此编码来自Thirumalai_pm

希望它有效!