123456
using namespace System::Net; WebClient web; private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) { textBox1->Text = web.DownloadString("http://pastebin.com/raw.php?i=fPf1NBWB"); }
1234567891011
System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) { WebClient web; String^ buffer = web.DownloadString("http://www.cplusplus.com/forum/beginner/230330/"); String^ sep = "\r\n"; array<String^> ^lines = buffer->Split(sep->ToCharArray()); if (lines->Length > 0) textBox1->Text = lines[0]; else MessageBox::Show("Text empty"); }