vote up 0 vote down star

I read a book a while back (I don't know which one) that referred to these characters as "corn holders" or something clever. What do you call these characters across different web technologies that escape into code blocks with <% %>?

flag
For ASP/ASP.NET, refer to stackoverflow.com/questions/649428/… – ssg Oct 1 at 17:18

3 Answers

vote up 0 vote down check

I recall Jeff Atwood calling them "bee stings" in a past Stackoverflow Podcast, but I'm not sure if that only applies to the .NET versions

HTH Alex

link|flag
That's it! Geez, I didn't read it. I thought that was the best term for something since I heard @ called ampersat (like & is ampersand). So great. – milkfilk Oct 1 at 19:13
vote up 0 vote down

They are called scriptles tags on JSP, they will be coding as the following too :

<jsp:scriptlet> 
</jsp:scriplet>

and an example of use (JSP) :

<body>
<%! int j= 15; %>
<% for (int i = 0; i < j; i++)
    out.println("Hello World!<br/>"); %>
<%-- Im a comment --%>
<%= "Bye" %>
</body>

there are more of those "bee things" in the above snippet :

<%! %>  or <jsp:declaration> </jsp:declaration> 
<%-- --%> 
<%=  %> or <jsp:expression> </jsp:expression>
link|flag
Actually, no, Their content is a scriptlet, not the tags themselves. – ChssPly76 Oct 1 at 17:07
vote up 0 vote down

I've heard them called "nuggets" but I think that is non-universal, unaccepted slang. I like it though.

link|flag

Your Answer

Get an OpenID
or

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