I want to do this
<%# Eval("campo1").ToString() == "nada consta" ? "nada consta" : Eval("campo1")%>
inside the linkButton
<asp:LinkButton ID="LinkButton1" runat="server" PostBackUrl= '<%#
"~/Promocao.aspx?ID="+Eval("campo2") +
Eval("campo3")%>'>...+infos</asp:LinkButton>
That is, if data exists in "field1", it displays the data. Otherwise it displays "nothing". And, having data, clicking on linkButton passes to another page "promocao.aspx" the field2 and field3. The way it is, side by side, even though it does not have data in "field1" the LinkButton is available for click. Also, as it stands, in the URL field2 and field3 they get together.