I have an ASP text box and I'm trying to add a calDatePicker style along with a databinding expression inside the same CssClass attribute.
Below is an example of the code I'm trying to get. Any ideas?
<asp:TextBox ID="DateValue" CssClass='<%# ShowFieldRequired(Eval("Required"))%> + "calDatePicker"' runat="server"></asp:TextBox>
source
share