I have a boolean field which the gridview displays (true or false) fine when
I program like this:

<asp:BoundField DataField="myfield" HeaderText="myfieldname" />

But when I put it inside a template within the gridview, nothing is
displayed.

<asp:TemplateField HeaderText="myfieldname">

<asp:itemtemplate>



<%#Eval("myfield")%>

</asp:itemtemplate>

</asp:TemplateField>

Have the same problem with another string field. Do I need to do some
additional transformation when using a template?

Thanks.