I am using Asp.net mvc3 and displaying the .pdf file on my one of page. according to architecture: Asp.net mvc3 + WCF+EF 4.1 with Azure web role+sql azure.
My pdf file generated dynamically on cloud (azure). I need to display it on my aspx page using tag. but what should be the url need to provide to it? will this work with Azure ? or i need to download / save it dynamically in application domain temprary to assign url. which is best way?
I am using Asp.net mvc3 and displaying the .pdf file on my one of
Share
You could write a controller action which will dynamically generate the PDF file:
and in the view:
or if you know the url of the PDF on the cloud you can directly point the
srcof the iframe to it.