Question

How to use the Url.Action method in the iframe src attribute. Like

<iframe src = '<%=Url.Action("HelloWorld", "myController");%>' width = "100%" height="1000" frameBorder="0"></iframe>

But its not working properly. Its saying that the requested content is not available.

Please help me

Was it helpful?

Solution

Using ASP.NET engine

<iframe src = '<%: Url.Action("HelloWorld", "myController") %>' width = "100%" 
    height="1000" frameBorder="0"></iframe>

Using razor engine.

<iframe src = '@Url.Action("HelloWorld", "myController")' width = "100%" 
    height="1000" frameBorder="0"></iframe>

OTHER TIPS

Same here found error in getting what type of Controller should be? so this is the best solution if you are using IFrame for PDF Viewer and I hope this code will be useful.


<iframe src="@Url.Action("GetPDF")" id="sign" width="800" height="800"></iframe>

  public FileStreamResult GetPDF()
        {
            var path = "E:\\FirstTask\\FirstTask\\FolderToSave\\Patient Consent.pdf";
            FileStream fs = new FileStream(path, FileMode.Open, FileAccess.ReadWrite);
            return File(fs, "application/pdf");
        }
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top