Чтобы открыть на указанной странице c, add #page=[page number]
до конца sr c
<iframe width="700" height="1600" src="@Url.Action("OpenPDF", new { id = 8 })#page=4"></iframe>
, если номер страницы должен быть из модели, выполните
public ActionResult Index()
{
MyViewModel m = new MyViewModel() { FilePage = 4 };
return View(m);
}
...
@model MVC.MyViewModel
<iframe width="700" height="1600" src="@Url.Action("OpenPDF", new { id = 8 })#page=@Model.FilePage"></iframe>