Hello! I have this question. If I want to render another view on the view, then I can use the following code:
@Html .Partial("Myiew")
However, if I want to render not a presentation, but a certain html-page (namely, the page, and not some other presentation) then when I write this:
@Html .Partial("MyPage.html")
I’m getting an error The partial view 'MyPage.html' was not supported or supported by the engine.
Given that the MyPage.html page definitely exists, and there are no errors in the path to it (even the resharper testifies to this). How can I render this html page on my presentation? Thank you in advance