ASP.NET in 80386 assembly language

Something new ( new?!  ) for me today...

For the curious, here's an .aspx page in assembly langauge:
<%@ page language="Asm80386" %>
<%
Str: DB "Testing...", 0

mov eax, -2
cmp eax, 2
jle Label1
xor eax, eax
Label1:
lea esi, Str
push esi
call "Response.Write(string)"
pop esi
%>
<br>EAX: <%= eax %>

via [Mike]

This is the first time for me to see this kind of codes in ASP.NET Programming. :)

5 Comments

Comments have been disabled for this content.