Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using a .NET 3.5 ListView control and would like to display a TINYINT field value as a checkbox (0 = False, 1 = True).

How to do this?

I was trying:

<asp:CheckBox ID="freight_foundCheckbox" runat="server" 
Checked='<%# Eval("found") %>'  />

But this results in a Cast error.

share|improve this question

3 Answers

up vote 2 down vote accepted

Try this:

<asp:CheckBox ID="freight_foundCheckbox" runat="server" Checked='<%# Convert.ToBoolean(Eval("found")) %>'  />
share|improve this answer

That won't work on an int field. You have to make sure the property you're binding to is a Boolean/bool.

share|improve this answer

The example above will throw an exception. You need to convert the value to bool:

<asp:CheckBox ID="freight_foundCheckbox" runat="server" Checked='<%# (int)Eval("found") == 1 ? true : false  %>' />
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.