Title: BINDing an ASP.NET 2.0 FormView - CheckBox or RadioButton to Oracle CHAR(1) Y/N
Since Oracle XE (and other versions too) does not has BOOLEAN data type. CheckBoxes in ASP.NET are BOOLEAN controls.
So I use CHAR(1) column with Y or N values in the Oracle table,
Question: how can I bind to a CheckBox or CheckBoxList or RadioButton or RadioButtonList control on an ASP.NET 2.0 web form?