Lenguaje de programación Visual C# .Net
Ejemplo que obtiene el contenido de una página web, obtiene el contenido HTML de una URL especificada y la muestra en un TextBox.
Básicamente usaremos WebClient.DownloadString perteneciente al espacio de nombres System.Net.
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 = "http://www.ajpdsoft.com";
var textFromFile = (new WebClient()).DownloadString(url);
txtContenidoWeb.Text = textFromFile;
}
}
}
Publicado el: 2013-06-02