I have a ASP.NET GridView with a column mapped to a boolean. I want do display \"Yes\"/\"No\" instead of \"True\"/\"False\". Well actually I want \"Ja\"/\"Nej\"
GridView
Nope - but you could use a template column:
<%# Eval("Active", b => b ? "Yes" : "No") %>