Win32 ASP Problems (Response.End)

Jim Abrams jim at publishingresources.com
Thu May 30 13:57:39 EDT 2002


All sorts of weird flakiness abounds.

File 1:

<%@LANGUAGE="Python"%>
<%
Response.End()
%>
End of Line.

This shows "End of Line." on the page. Response.End() seems to pass 
through.


File 2:
<%@LANGUAGE="Python"%>

<%
Response.end()
%>

End of Line.

Changed end() to lowercase: Now I get 'HTTP/1.1 500 Server Error'

And this...

File 3:
<%@LANGUAGE="Python"%>
Between Text
<%
Response.end()
%>

End of Line.

Now it works. Needed some text before the end().

Clues? Helps? Where do I send bug reports for this stuff?





More information about the Python-list mailing list