将Iframe的源代码保存为桌面上的图像

时间:2012-04-18 09:50:56

标签: javascript asp.net

我在网页中有一个iframe,当点击提交按钮时,其来源已被填充。我需要将iframe源保存为桌面上的图像。如何完成此操作。 下面是代码:

<iframe id="IFAEventPerformance" name="IFAEventPerformance" scrolling="auto" runat="server"
 width="100%" height="403" class=""></iframe>

和cs文件:

protected void lnkBTNSubmit_Click(object sender, EventArgs e)
        {
this.IFrame1.Attributes.Add("src", "https:\\anotherwebsitename");
}


function for export to ppt is:
 protected void imgBTNExportPPT_Click(object sender, ImageClickEventArgs e)
        {            
            //WebsiteToImage websiteToImage = new WebsiteToImage("http://www.google.co.in", @"C:\Users\312220\Desktop\myscreenshot.jpg");
            //websiteToImage.Generate();
            WebsiteToImage websiteToImage = new WebsiteToImage("C:\\Users\\304485\\Desktop\\Login.htm",(@"D:\\my\\chocos\\sample.jpg"));
            websiteToImage.Generate();
            TextBox txtTextBoxRetailGroup = (TextBox)uscRetailParameters.FindControl("txtRetailCustomerGroup");
            TextBox txtTextBoxPPGroup = (TextBox)uscRetailParameters.FindControl("txtProductGroup");
            TextBox txtTextBoxEventID = (TextBox)uscEventParameters.FindControl("txtEventId");

            string RetailGrp;
            RetailGrp = txtTextBoxRetailGroup.Text;
            string PPGrp;
            PPGrp = txtTextBoxPPGroup.Text;
            string EventID;
            EventID = txtTextBoxEventID.Text;

            ShowPresentation();
            GC.Collect();
        }

1 个答案:

答案 0 :(得分:0)

在您的来电者页面上提供iframe。将ppt加载为帧的src / href。 如果用户浏览器设置允许,则ppt将显示在框架中。

我相信这与.NET无关