asp oddness , why specify ASP twice

davidj411 davidj411 at gmail.com
Wed Nov 26 16:07:11 EST 2008


for some reason this code works:
*********************************************
<%@ LANGUAGE = Python%>
<%
Response.Write ("test")
%>
*********************************************


but this code does NOT:
*********************************************
<%@ LANGUAGE = Python
Response.Write ("test")
%>
*********************************************

the difference between the two is that i remove "%>" from the first
line and removed "<%" from the next line.
it would seem that this should put all the code into one "ASP block"
but for some reason it does not run.

any ideas? thanks



More information about the Python-list mailing list