ASP.NET in 80386 assembly language
Something new ( new?! ) for me today...
<%@ 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. :)