Click here to Skip to main content
15,884,960 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
On a button click I'm opening a PDF by this code-
C#
function LoadPreview()
    {
        var theFeats =         "height=800,width=650,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no";
          window.open("Preview.aspx?IsUser=1", "Preview",theFeats);
            return false;
    }


and rest code is written in Preview.aspx.It's working fine fore Chrome and IE.
In Firefox pdf document header is coming "Preview.aspx"
and I save that doc then name is coming "Preview.aspx".
and document is saved with .aspx extension.

How an I solve this Problem.
Posted
Comments
Matej Hlatky 30-Apr-13 4:18am    
What HTTP Headers are you sending in Preview.aspx file? Check the "Content-Disposition" HTTP Header.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900