0

我想从gridview获取单元格值,但返回空字符串。我
在radiobuttonlist的selectedindexchanged事件中实现代码。我遍历gridview并按代码访问单元格。但问题仍然存在。我使用了三个itemtemplate,每个都有一个elemnt这样每个元素都有自己的 .aspx

      <asp:GridView ID="GridView2" runat="server" AutoGenerateColumns="false" >



               <Columns>
<asp:TemplateField>
    <itemtemplate>
                <asp:Label ID="Label2" runat="server" Text='<%# Eval("qno") %>'>

           </asp:Label>
               </ItemTemplate>
          </asp:TemplateField>

          <asp:TemplateField>

          <ItemTemplate>
                    <asp:Label ID="Label3" runat="server" Text='<%# Eval("description") 
        %>'>

          </ItemTemplate>
          </asp:TemplateField>
    <asp:TemplateField>
    <itemtemplate>
          <asp:RadioButtonList ID="RadioButtonList1" RepeatDirection="Horizontal" 
           runat="server" OnSelectedIndexChanged="changed"  AutoPostBack="true" >


             <asp:ListItem   Value="agree" Selected="True" >

             </asp:ListItem>
               <asp:ListItem 
                Value="disagree">

             </asp:ListItem>
               <asp:ListItem Value="strongagree">

             </asp:ListItem>
               <asp:ListItem Value="strondisagree">

             </asp:ListItem>
                </asp:RadioButtonList>
    </itemtemplate>
    </templatefield>
                </Columns>

           </asp:GridView>

         <asp:Label ID="Labe11" runat="server" ></asp:Label>
        Code behind: public void changed(object sender, EventArgs e) {

              for(int i=0;i<GridView2.Rows.Count;i++)
              {
                  string labtext;
                    RadioButtonList list = 
            GridView2.Rows[i].Cells[2].FindControl("RadioButtonList1") as RadioButtonList;
                   labtext= GridView2.Rows[i].Cells[0].Text;


                   Label1.Text = labtext;


              }



                    }
4

2 回答 2

0

您是否包含了上述 .aspx 页面中的所有 HTML?你在那里拥有的东西是行不通的。ItemTemplates 不构成列,它们包含TemplateField 列中。

示例(改编自您的代码, http:
//msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.templatefield.itemtemplate.aspx
http://msdn.microsoft.com/en-us /图书馆/aa479353.aspx):

<asp:GridView ID="GridView1" Runat="server" 
    <Columns>

        <asp:TemplateField HeaderText="Description">
            <ItemTemplate>
                <asp:Label ID="Label3" runat="server" Text='<%# Eval("description") %>'>
            </ItemTemplate>
        </asp:TemplateField>

        <asp:TemplateField HeaderText="Choice">
            <ItemTemplate>
                <asp:RadioButtonList ID="RadioButtonList1" RepeatDirection="Horizontal" runat="server" OnSelectedIndexChanged="changed"  AutoPostBack="true" >
                    <asp:ListItem Value="agree" Selected="True" />
                    <asp:ListItem Value="disagree" />
                    <asp:ListItem Value="strongagree" />
                    <asp:ListItem Value="strondisagree" />
                </asp:RadioButtonList>
            </ItemTemplate>
        </asp:TemplateField>

    </Columns>
</asp:GridView>

您需要为每列单独定义 TemplateField。

于 2012-06-07T16:38:25.020 回答
0

请改用这个:

GridView2.Rows[i].FindControl("RadioButtonList1") as RadioButtonList;

问候, 西瓦库玛

于 2012-06-08T18:10:47.333 回答