Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What language is that? (<%REPEAT...%>, <%OPTIONAL ...%>)

This seems to be some kind of lowskilled, so sorry for that...

I've got a script which is included in a html-file. The only thing I wanna know is: which script-language is it? It uses some stuff like:

<div><%=MY_VALUE%></div>

Therefore I would guess, that this is ASP, ASP.NET or something. But what doesn't fit in this guess I think, is the following:

<%REPEAT ...%>
<tr>
    <td>...</td>
</tr>
<%/REPEAT ...%>

I'm talking about the <%REPEAT ...%>-Statements. I googled and didn't find any result. So does anyone know, from this <%REPEAT%>-tags what language it is?

Another hint: There are also severeal statements like <%OPTIONAL ...%>.

Thank you

like image 419
Fidi Avatar asked Nov 30 '10 08:11

Fidi


People also ask

Which clause in for next is optional?

The FOR... NEXT statement begins with a FOR keyword with var=start TO end to establish a loop counter. This is followed by one or more optional clauses: STEP, WHILE, and UNTIL. The loop itself consists on one or more executable statements.

Do loops syntax in C?

Syntax. do { statement(s); } while( condition ); Notice that the conditional expression appears at the end of the loop, so the statement(s) in the loop executes once before the condition is tested. If the condition is true, the flow of control jumps back up to do, and the statement(s) in the loop executes again.

Do loops example SAS?

SAS Do Loop Example:-data A; do i = 1 to 4; y = i**2; /* values are 2, 5, 9, 16, 25 */ output; end; run; data A; do i = 1 to 4; y = i**2; /* values are 2, 5, 9, 16, 25 */ output; end; run; The END statement marks the end of the SAS loop.


1 Answers

You are right in thinking that this should be either Classic ASP or ASP.NET

You can have an HTML file in IIS act like an ASP file. Trust me it's all ASP or ASP.NET.

like image 63
capdragon Avatar answered Oct 11 '22 15:10

capdragon