0

我尝试添加DropdownList中继器,但我替换的不是grdfilapprove这个

代码

 foreach (GridViewRow row in **GrdFileApprove**.Rows)
        {

            if (row.RowType == DataControlRowType.DataRow)
            {
                DropDownList DropDownListcontrol =
               row.FindControl("DropDownList4")       as  
             DropDownList;  

                SqlCommand cmd = new SqlCommand("approveddd", mySQLconnection);
                cmd.CommandType = CommandType.StoredProcedure;

我更新我的问题这是按钮代码

foreach (RepeaterItem row in Repeater2.Items)
        //foreach (GridViewRow row in GrdFileApprove.Rows)
        {

           if (row.**RowType** == DataControlRowType.DataRow)
            {
                DropDownList DropDownListcontrol =
             ((DropDownList)**dataItem.**FindControl("DropDownList4"));
                //DropDownList DropDownListcontrol = row.FindControl("DropDownList4") 
               as DropDownList;

                SqlCommand cmd = new SqlCommand("approveddd", mySQLconnection);
                cmd.CommandType = CommandType.StoredProcedure;


                cmd.Parameters.Add("@DocID", SqlDbType.Int).Value = 
            Convert.ToInt32((row.Cells[1].Text));

                cmd.Parameters.Add("@ApproveID", SqlDbType.Int).Value =
              Convert.ToInt32(DropDownListcontrol.SelectedValue);
                cmd.Parameters.Add("@ApproveBy", SqlDbType.VarChar, 50).Value = 
           (Session["Login2"]);

                cmd.ExecuteNonQuery();

                DMSLIB.Doc myDoc = new DMSLIB.Doc();
                myDoc.MarkDocAs(Convert.ToInt16(row.**Cells**[1].Text),  
             Convert.ToInt32(DropDownListcontrol.SelectedValue));

            }
            else
            {
                apfi.Text = "Error";
            }
        }

现在,当我使用它时,这向我显示了错误

1.RowType error 'System.Web.UI.WebControls.RepeaterItem' does not contain a definition for 'RowType' and no extension method 'RowType' accepting a first argument of type 'System.Web.UI.WebControls.RepeaterItem' could be found (are you missing a using directive or an assembly reference?)

2.dataItem error the name 'dataItem' does not exist in the current context

3.细胞System.Web.UI.WebControls.RepeaterItem does not contain a definition for 'Cells' and no extension method 'Cells' accepting a first argument of type 'System.Web.UI.WebControls.RepeaterItem' could be found (are you missing a using directive or an assembly reference?)

4.细胞 'System.Web.UI.WebControls.RepeaterItem' does not contain a definition for 'Cells' and no extension method 'Cells' accepting a first argument of type 'System.Web.UI.WebControls.RepeaterItem' could be found (are you missing a using directive or an assembly reference?)

谢谢

4

2 回答 2

0

我试图了解您在寻找什么,我认为您需要这个来循环输入新中继器的正确项目:

foreach(RepeaterItem dataItem in YourRepeater.Items)        
{ 
    DropDownList DropDownListcontrol= ((DropDownList)dataItem.FindControl("DropDownList4"));

    // Your code
}
于 2013-11-07T13:55:14.120 回答
0

您需要使用Repeater 的ItemDataBound。还需要检查 ItemType,如下所示:

void Repeater1_ItemDataBound(Object Sender, RepeaterItemEventArgs e) 
{
    if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem) 
    {
        DropDownList DropDownListcontrol = e.Item.FindControl("DropDownList4") as DropDownList;
        //Do other tasks
    }
}    
于 2013-11-07T14:21:23.807 回答