What techniques can be used in embed an external web site’s content in ASP.NET MVC’s contentplaceholder? It is similar to ASP’s iFrame. I know how to host the first page but I can not figure out how to make the linked pages in the external site stay in contentplaceholder of MVC application.
Thanks for any help
An iframe is completely valid HTML, thus it is completely valid in an MVC app.
Just place an iframe in the contentplaceholder and assign it’s
srcattribute to the desired URL.