I tried the following code, I tried to use inline expressions like <%, ,<%= , why I can\'t use inline expression with server side control?
In my first line of
When you bind an expression <%# %> you must have to call Control.DataBind() or Page.DataBind() to evaluate it.
<%# %>
Control.DataBind()
Page.DataBind()