如何从gridview上的templateField获取值或文本<asp:TemplateField HeaderText ="Format"> <ItemTemplate> <asp:Label ID="Format" runat="server" Text='<%#GetFormatText(DataBinder.Eval(Container.DataItem, ("Format")))%>'> </asp:Label> </ItemTemplate></asp:TemplateField>grvRow.Cells[4] 的值始终为空。drpFormat.SelectedValue = grvRow.Cells[4].Text;
2 回答
慕后森
TA贡献1802条经验 获得超5个赞
您必须使用 FindControl 来获取模板字段中的标签
Label lblname = (Label)grvRow.Cells[4].FindControl("Format"); drpFormat.SelectedValue= lblname.Text;
- 2 回答
- 0 关注
- 222 浏览
添加回答
举报
0/150
提交
取消