Code:using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace NameGetter { public partial class Form1 : Form { HTTPWrapper Wrapper = new HTTPWrapper(); public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { Random random = new Random(); Int32 rndid = random.Next(5000, 25000000); String Get = Wrapper.Get("http://www.gaiaonline.com/profiles/" + rndid); String ID = Wrapper.Between(Get, "http://www.gaiaonline.com/profiles/", "/"); textBox1.Text = ID; } } }
Results 1 to 6 of 6
Thread: UserName Grabber [C#]
Threaded View
- 01 Jul. 2011 09:14pm #1
UserName Grabber [C#]