views:

217

answers:

6

Possibly a redundant and useless question, but my colleagues and I refer to <% %> as server tags, but is there an actual name for them?

one i've seen used is calling them Alcohol tags.

Edited based on answers

We're referring to them in ASP.NET, but I would've thought they'd use the same name across all languages if they did the same job?

+3  A: 

In JSP they are called scriptlets, don't know if you were talking about Java though.

Alberto Zaccagni
"scriptlets", actually, but I assume that was a typo
skaffman
Yes typo... ^^ In every day life I use to call them scriplets, so I transferred the error here, thanks for pointing out.
Alberto Zaccagni
A: 

That's what I use for them, but I've also heard people use the term inline tags.

Colin
A: 

As far as I know, they were called "Server Tags" in classical ASP

Xinxua
A: 

I've heard them referred to as bee stings. In Ruby/ERB, they're known as "Embedded Ruby".

Tate Johnson
+2  A: 

In ASP, they're "Embedded Code Blocks".

I like to try and not use "tags" except when referring to to HTML or XML tags (the ones that have a start and end)

Brad Bruce
Brad is correct: http://msdn.microsoft.com/en-us/library/ms178135.aspx
Johan Leino
+2  A: 

"Server-Side Scripting Delimiters", as laid out in this question/answer here:

ASP.NET "special" tags

Zhaph - Ben Duguid