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;

        }
    }
}