Как использовать Url.Действие в iframe в src
как использовать Url.Action
метод iframe
. Как
<iframe src = '<%=Url.Action("HelloWorld", "myController");%>' width = "100%" height="1000" frameBorder="0"></iframe>
но это не работает должным образом. Он говорит, что запрошенное содержимое недоступно.
пожалуйста, помогите мне
2 ответов
использование ASP.NET двигатель
<iframe src = '<%: Url.Action("HelloWorld", "myController") %>' width = "100%"
height="1000" frameBorder="0"></iframe>
используя бритву двигателя.
<iframe src = '@Url.Action("HelloWorld", "myController")' width = "100%"
height="1000" frameBorder="0"></iframe>
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");
}