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
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.
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.
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.
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With