Renderizar página da Web em C # + ASP.NET MVC
// HTML VIEW <h2>Web Page</h2><div> @{ Html.RenderAction(“GetWebPage”); }</div> // CONTROLADOR MVC public ActionResult GetWebPage(){ string result = string.Empty; try { using( WebClient client = new WebClient() ) { result = …
Continuar lendo