开发者

AcrobatReader and FormWeb

Hi I wrote a webForm that is used to display a ".pdf" document receiving from one other webForm the path of the file by queryString.

The all i开发者_如何学Gos working well but if from acrobat reader somebody try to save the file in local on openDialog is displayed the name of webForm ("PopVisPdf.pdf").

the question is:

How can display the real name of file in this situation ?

the code of webForm that I use:

    protected void Page_Load(object sender, EventArgs e)
    {
        CryptoString Uncrypt = new CryptoString();
        string id = Request.QueryString["Id"];
        string pathPdf = Uncrypt.DecryptString(id);
        Response.ContentType = "application/pdf";
        Response.TransmitFile(pathPdf);
        Response.End();
    }

Thankyou in advance for helping

Piercarlo


I resolved from myself. well only need to call the winform that show the file with this string:

http://MyForm.aspx/FileName.pdf?id=.........

where "FileName.pdf is the name that I want to give

Is working beatifull

Hope that can be usefull to somebody else.

Regards

Piercarlo

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜