Bugs item #722412, was opened at 2003-04-16 20:51
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=551954&aid=722412&group_id=78018
Category: com
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Mark Hammond (mhammond)
Assigned to: Nobody/Anonymous (nobody)
Summary: ASP Response.End is flakey
Initial Comment:
From email:
Anyone else seeing this?
PythonWin 2.1.1 / win32all 1.5.1 / Win 2k Server
*** Script 1 ***
<%@LANGUAGE="Python"%>
Before End
<%
Response.End()
%>
After End
*** Output ***
Before End After End
*** Script 2 ***
<%@LANGUAGE="Python"%>
Before End
<%
Response.end()
%>
After End
*** Output ***
Before End
*** Script 3 ***
<%@LANGUAGE="Python"%>
<%
Response.end()
%>
After End
*** Output ***
HTTP/1.1 500 Server Error
--
Yes, I too have found it to be the case in the past
(haven't checked
recently) that Response.End() does not in fact end the
response in
python under asp.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=551954&aid=722412&group_id=78018
|