Articles
FAQs
Login
All Questions
New Question
ASP.NET Server-Side Code Blocks Legend
By Peter Bromberg
The following are the different types of ASP.NET server-side code blocks and what they are for.
<% %>
-
Server side code
<%-- --%>
-
Server Side Comment
<%@ %>
-
Page Directive
<%= %>
-
Display value
<%: %>
-
HTML Encode
<%$ %>
-
Datasource Expression
<%# %>
-
Binding Expression
You can find more information about some of them at "
ASP.NET Page Syntax
".
ASP.NET Server-Side Code Blocks Legend
(
1811 Views
)