<%@page import="com.northglass.GlassLayout.Algorithm.AlgorithmDBInterface"%>
|
<%@page import="com.northglass.Globel.mes"%>
|
<%@page import="com.northglass.SqlHelper.*"%>
|
<%@page import="org.json.*"%>
|
<%@ page contentType="text/json;charset=UTF-8"%>
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
|
|
|
<%
|
System.out.println("change");
|
String line=request.getParameter("line");
|
System.out.print(line==null);
|
if("1".equals(line)){
|
AlgorithmDBInterface.canRotate1=!AlgorithmDBInterface.canRotate1;
|
}
|
if("2".equals(line)){
|
AlgorithmDBInterface.canRotate2=!AlgorithmDBInterface.canRotate2;
|
System.out.println( AlgorithmDBInterface.canRotate2);
|
}
|
|
out.print("{result:\"ok\"}");
|
%>
|