首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

gridview关于dropdownlist有关问题

2012-02-03 
gridview关于dropdownlist问题ItemTemplateasp:LabelID lbl4 runat server Text%#Eval( POWER

gridview关于dropdownlist问题
<ItemTemplate>
                                                                                <asp:Label   ID= "lbl4 "   runat= "server "   Text= ' <%#   Eval( "POWER_NAME ")   %> '> </asp:Label>
                                                                                <asp:DropDownList   ID= "dl1 "   runat= "server "   Visible= "false "   Width= "100 "   > </asp:DropDownList>
                                                                        </ItemTemplate>
我想让点击编辑按钮后让dl1默认选中的值等于lbl4的值。
我在page_load里面
  for   (int   i   =   0;   i   <   this.gv1.Rows.Count;   i++)
                        {

                                ((DropDownList)this.gv1.Rows[i].Cells[2].FindControl( "dl1 ")).SelectedValue   =   this.gv1.Rows[i].Cells[2].Text;
                        }

不行。

请大侠帮忙

[解决办法]
foreach (GridViewRow row in GridViewBookShop.Rows)
{
DropDownList ddl = (DropDownList)row.FindControl( "dl1 ");
.......
}
[解决办法]
foreach (GridViewRow row in gv1.Rows)
{
DropDownList ddl = (DropDownList)row.FindControl( "dl1 ");
.......
}

[解决办法]
试成功了?

热点排行