DetailsView中模板列的值的获取
在DetailsView控件中,显示一条记录的各字段的值,其中有一个为模板列:
<asp:TemplateField HeaderText="录制日期">
<ItemTemplate>
<%# Eval("RecDate","{0:yyyy-MM-dd}") %>
</ItemTemplate>
</asp:TemplateField>
我如何获取该日期值给别的控件?
DetailsView
------解决方案-------------------- bool status = Convert.ToBoolean((GridView1.Rows[e.RowIndex].FindControl("RadioButtonList1") as RadioButtonList).SelectedItem.Value);
我不知道你看的懂不,这个就是跟你那个一样的获取,我这个是把模板列放在gridview控件里面然后去那里找这个模板,你去取值也是一样的吧,把控件名改一下就可以