protected void RadGrid1_NeedDataSource(object sender, EventArgs e)
        {
            DataTable table = new DataTable();
            table.Columns.Add("", typeof(string));

            int i = 1;

            while (i <= 10)
            {
                table.Rows.Add("");

                i++;
            }

            RadGrid1.DataSource = table;
        }