📄 style.jsp
字号:
<%@ page language="java" contentType="text/html; charset=GBK"%>
<%@ page import="java.util.*"%>
<%@ taglib prefix="ww" uri="webwork"%>
<%@ page import="cn.myapps.core.user.action.WebUser"%>
<%@ page import="cn.myapps.constans.Web"%>
<%@ page import="cn.myapps.core.style.repository.ejb.*"%>
<%@ page import="cn.myapps.core.style.repository.action.StyleRepositoryHelper"%>
<%
String styleid = request.getParameter("styleid");
if (styleid!=null && styleid.trim().length()>0) {
// StyleRepositoryProcess process = (StyleRepositoryProcess)ProcessFactory.createProcess(StyleRepositoryProcess.class);
// StyleRepositoryVO vo = (StyleRepositoryVO)process.doView(styleid);
String text = StyleRepositoryHelper.getStyleContent(styleid);
if (text!=null) {
out.print(text);
}
}
else {
request.getRequestDispatcher("main.css").forward(request, response);
}
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -