0
I have that expression:
<asp:Label Text='<%# Eval("Analista") %>' runat="server" /><br />
The result is Approved or Disapproved. I would like to add the following word: by: In which the final result would be:
Approved/Disapproved by:
How do I do it? I tried with the por: inside the simple quote, I tried with + inside the simple quote, I tried outside and none of the alternatives worked.
And if you do
<asp:Label Text='<%# Eval("Analista") %>' runat="server" /><label>  por:</label><br />
?? Or even without putting the<label>
– CesarMiguel
It worked, but the sources are different. The reason: it was very small. I did so and it worked: <Sp:Label Text='<%# Eval("Situation") %>' runat="server" />by:></label><br />
– pnet
Yeah, that should do it, too. I just didn’t suggest it because I thought you already tried
– CesarMiguel
I didn’t even think about doing it like this, really. But I solved it like this: <Asp:Label Text='<%# Eval("Situation") %>' runat="server" /><Asp:Label Text="by:" runat="server" /><br />
– pnet
I told you to use the tag
<label>
because they could have the same css properties as<asp:Label />
, but there, there you go ;)– CesarMiguel
@Cesarmiguel, post your suggestion for me to finish as your solution.
– pnet