aspx到jpeg图像转换

时间:2012-09-24 09:27:42

标签: c# asp.net

我试图将aspx页面转换为图像,即将其保存为png文件。我用了iecapt。我在aspx页面上有很多文本框。问题是文本框值未保存在图像文件中。我只是获取源文件图像。希望我能得到一些建议。 谢谢

protected void btnsend_Click(object sender,EventArgs e)         {

        string url = "http://localhost:4101/WebForm3.aspx"; 

        if(Request.Params["weburl"] != null)
        {     
            url = Request.Params["weburl"];      
        }               
        string savepath = String.Format("C:\\IECapt\\{0}.png" , System.Guid.NewGuid());    
        System.Diagnostics.Process process = new System.Diagnostics.Process();   
        process.StartInfo.FileName  = "C:\\IECapt\\IECapt.exe";
        process.StartInfo.Arguments = String.Format("\"{0}\" \"{1}\"",url,savepath);
        process.StartInfo.UseShellExecute = false;  
        process.Start();    
        process.WaitForExit();  
        process.Dispose();  
        Response.Clear();
        Response.ContentType = "image/png";
        Response.WriteFile(savepath);
        Response.End(); 
    }

1 个答案:

答案 0 :(得分:1)

The problem is the textbox values are not saved in the image file.

当然他们没有,如果他们这样做,那么它每个人都能读出输入的数据 - 但事实并非如此,情况是您加载的页面不包含任何输入的数据 - 是一个隔离负载

当你这样做时,你加载了用户看到的东西,但实际上没有,你看不到用户看到的东西,你只需再加载一页。

您必须区分在服务器上运行的代码和在客户端浏览器上运行的代码。

你也可以问:Screenshot of webpage in asp.net c#