Reputation: 77329
What is the difference between <%# and <%= in ASPX inline code?
Upvotes: 8
Views: 494
Reputation: 37547
<%= is shorthand for Response.Write()
<%# is used to render data in databound controls
Upvotes: 11