Michael
Michael

Reputation: 1879

Asp.net server-side code block explanations

I've seen many different types of server side code blocks in aspx but never a simple key for what each means. I know some of these but it's really hard to search for symbols in a search engine! Can you help me out?

<% %> 
<%-- --%> 
<%@ %>
<%= %>
<%: %>
<%$ %>
<%# %>

Upvotes: 16

Views: 6225

Answers (1)

mdm
mdm

Reputation: 12630

You can find a bit more information about some of them at "ASP.NET Page Syntax".

Upvotes: 30

Related Questions