hyperlind binding

G

Guest

hey all,
i having a problem binding a sql text field to a label inside a DataList.

<asp:Hyperlink ID="Hyperlink1" runat="server" Text='<%#
(Eval("FollowUp")==null)?" ":"View" %>' /><br />

It always results to the false path eventhough it shouldn't do that.

thanks,
rodchar
 
G

Guest

hey all,
i having a problem binding a sql text field to a label inside a DataList.

<asp:Hyperlink ID="Hyperlink1" runat="server" Text='<%#
(Eval("FollowUp")==null)?" ":"View" %>' /><br />

It always results to the false path eventhough it shouldn't do that.

thanks,
rodchar

Instead of the null try to compare with the DBNull.Value
DBNull is used for database null validation
 
G

Guest

why wouldn't using true work either?

<asp:Hyperlink ID="Hyperlink1" runat="server" Text='<%#
(Eval("FollowUp")==true)?" ":"View" %>' /><br />
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,537
Members
45,024
Latest member
ARDU_PROgrammER

Latest Threads

Top