如何从Radgrid中的单元格获取值C#asp.net

时间:2015-09-04 05:33:57

标签: c# asp.net rows radgrid cells

我正在尝试获取特定的单元格值,因此当我按下按钮时我可以在我的方法中传递它,但我总是在两者上都是空的(我知道它不是空的)。

P.s:没有选择行,因为我做了一个循环来获取所有行。变量" p"正确得到我在网格上的行数。

  protected void PostRadButton_Click(object sender, EventArgs e)
        {
            int p;
            if (DocStatTxtBox.Text == "2")
            {
                foreach (GridDataItem item in RadGrid1.Items)
                {
                    p = item.RowIndex;
                    string itemcodeparam = item["ItemCode"].Text;//error null (4th cell)
                    int quantityparam = Convert.ToInt16(item.Cells[5].Text);//error null
                    Boolean x = Methods.UpdateStock(WhTxtBoxRadDropDownList.SelectedValue,itemcodeparam,-quantityparam);


                }


            }
        }

1 个答案:

答案 0 :(得分:1)

最后我用这段代码做了

protected void PostRadButton_Click(object sender, EventArgs e)
            {
                int p;
                if (DocStatTxtBox.Text == "2")
                {
                    foreach (GridDataItem item in RadGrid1.Items)
                    {

                            p = item.RowIndex;

                            Label itemparam = (Label)item["ItemCode"].FindControl("ItemCodeLabel");
                            Label qparam = (Label)item["Quantity"].FindControl("QuantityLabel");


                            string itemcodeparam = itemparam.Text;
                            int quantityparam = Convert.ToInt16(qparam.Text);
                            Boolean x = Methods.UpdateStock(WhTxtBoxRadDropDownList.SelectedValue, itemcodeparam, -quantityparam);


                    }
                }
            }