I am facing a problem like this: I have it in HTML page:
<div class="bar bar-success" style="width:80%;"></div>
BUT I'd like to use this 80% comming from a database.
so I'd tried this:
<div id="Percent" runat="server" class="bar bar-warning" style='width: <%# DataBinder.Eval(Container.DataItem, "number") %> %'>
But It didn't work. Can anyone help me to save my problem?