what I need help with is: I have a field in the database (MySql) called seq_orcamento that allow null, when it is not null I need that a LinkButton inside a FormView(that has as datasource a SqlDataSource) to be visible. What I did in my select command is
SELECT CASE seq_orcamento WHEN NOT NULL THEN '1' ELSE '0' END AS idc_seq FROM log_transacao
It is working fine, but is there a way to do some kind of bind that when idc_seq = 1 the LinkButton becomes visible?
I have no problem using code-behind if any of it is necessary, I'm using C#