kerajaanweb
New Member
what I need help with is: I have a field in the database (MySql) called \[code\]seq_orcamento\[/code\] 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 \[code\]SELECT CASE seq_orcamento WHEN NOT NULL THEN '1' ELSE '0' END AS idc_seq FROM log_transacao\[/code\]It is working fine, but is there a way to do some kind of bind that when \[code\]idc_seq = 1\[/code\] the LinkButton becomes visible?I have no problem using code-behind if any of it is necessary, I'm using C#