Does the ie stop button affect background services?
If you run a JSPProgramAfter ie presses the stop button, is the background server still working?
In order to use the facts, I wrote the following test:Code.
<% @ Page contenttype = "text/html; charset = gb2312" %>
<%
Out. println ("test ");
For (INT I = 1; I <= 100; I ++ ){
System. Out. println ("I =" + I );
Out. println ("I =" + I );
Thread. Sleep (1000 );
}
%>
After running, I can see that a number is printed every second in the system background. After a while, I press the ie stop button and find that the background is still working.
Therefore, when writing some browsers to control a backend Service Program (for example, pressing the button, the system automatically starts to send a large number of mail services), pay special attention to this. Once a program error is found, the stop button cannot be used to stop the program. You must terminate the background program.