Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

<% %> 
<%-- --%> 
<%@ %>
<%= %>
<%: %>
<%$ %>
<%# %>
share|improve this question

1 Answer

up vote 14 down vote accepted

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

share|improve this answer
1  
+1, excellent answer. Just linkify Resource Value and it will be perfect. – Darin Dimitrov Jun 15 '11 at 22:16
1  
Quite annoying that my Google/MSDN-fu couldn't get the resource value one though! Can anyone offer a link? – mdm Jun 15 '11 at 22:18
3  
@mdm, it's because it's not Resource Value :-) It's HTML encode and it is available only in ASP.NET 4.0. <%$ %> is more like resource value – Darin Dimitrov Jun 15 '11 at 22:19
that's useful! did I miss any? – Michael Jun 15 '11 at 22:21
1  
@mdm, it's getting late here as well :-) Once again very good compilation of links. – Darin Dimitrov Jun 15 '11 at 22:26
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.