我用2个GridView进行了嵌套循环,动态生成了一些TEXTBOX等控件现在我有一个按钮。我想点击后可以获取GridView上面动态生成的控件的值。 protected void btnSave_Click(object sender, EventArgs e)
    {
        RadioButton lblComplexParameterID = (RadioButton)FindControl("chk_1");
        ExcuteScript("radalert('" + lblComplexParameterID .Checked.ToString()+ "!')");
    }这样写好像不行。无法找到。有没有高人指点一下。?