Re: asp oddness , why specify ASP twice
davidj411 wrote in news:a08906ab-ba98-4ce0-a5f9-330f4b287423 @z27g2000prd.googlegroups.com in comp.lang.python: > > for some reason this code works: > * > <%@ LANGUAGE = Python%> The above is a Directive, in this case it tells ASP what language to use,
asp oddness , why specify ASP twice
for some reason this code works: * <%@ LANGUAGE = Python%> <% Response.Write ("test") %> * but this code does NOT: * <%@ LANGUAGE = Python Response.Write ("test") %>