oh srry xD überlesen
aber ne andere Möglichkeit gibts eigentlich nicht
Aber komisch bei mir gehts
Ne Form mit nem Button und ner Textbox
Code:
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;
[COLOR="Red"]using System.Net;[/COLOR]
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
WebClient wClient = new WebClient();
string strSource = wClient.DownloadString("http://www.ogame.de");
textBox1.Text = strSource;
}
}
}
kann es eein das du das
using System.Net am anfagn vergessen hast?