Wypełnij listę rozwijaną wewnątrz widoku siatki

Mam listę Dropdownlist w Gridview i muszę pokazać rekordy powiązane z każdym id.I ID zawiera więcej niż 10 rekordów, więc jak mogę je pokazać?

 protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
        {
            if (e.Row.RowType == DataControlRowType.DataRow)
            {
                con.Open();
                var ddl = (DropDownList)e.Row.FindControl("DropDownList1");
                //int CountryId = Convert.ToInt32(e.Row.Cells[0].Text);
                SqlCommand cmd = new SqlCommand("select LastName from Profile_Master",        con);
                SqlDataAdapter da = new SqlDataAdapter(cmd);
                DataSet ds = new DataSet();
                da.Fill(ds);
                con.Close();
                ddl.DataSource = ds;
                ddl.DataTextField = "LastName";
                ddl.DataBind();

            }
        }

questionAnswers(2)

yourAnswerToTheQuestion