tags:

views:

129

answers:

1

What is the difference between <%# and <%= in ASPX inline code?

+7  A: 

<%= is shorthand for Response.Write()

<%# is used to render data in databound controls

Chris Pebble