Ejemplo de código fuente en C# que obtiene el contenido de una página web. Se le pasa la URL de un sitio web y obtiene y muestra en un TextBox el contenido HTML.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Net; namespace AjpdSoftObtenerURL { public partial class formObtenerWeb : Form { public formObtenerWeb() { InitializeComponent(); } private void btObtenerContenidoWeb_Click(object sender, EventArgs e) { var url = "https://www.proyectoa.com"; var textFromFile = (new WebClient()).DownloadString(url); txtContenidoWeb.Text = textFromFile; } } } |