[asp.net] Can I convert a boolean to Yes/No in a ASP.NET GridView

This is how I've always done it:

<ItemTemplate>
  <%# Boolean.Parse(Eval("Active").ToString()) ? "Yes" : "No" %>
</ItemTemplate>

Hope that helps.