doc_template_select_main.jsp
上传用户:jhtang88
上传日期:2014-01-27
资源大小:28528k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=utf-8"%>
  2. <%@ page import="cn.js.fan.module.cms.*" %>
  3. <%@ page import="cn.js.fan.util.*" %>
  4. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  5. <html>
  6. <head>
  7. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  8. <title>选择模板-主窗口</title>
  9. </head>
  10. <body>
  11. <jsp:useBean id="dir" scope="page" class="cn.js.fan.module.cms.Directory"/>
  12. <%
  13. String dir_code = ParamUtil.get(request, "dir_code");
  14. if (dir_code.equals(""))
  15. dir_code = "template";
  16. Leaf leaf = dir.getLeaf(dir_code);
  17. int type = leaf.getType();
  18. if (type==0) {
  19. out.print(StrUtil.p_center("本类无文件"));
  20. }
  21. else {
  22. response.sendRedirect("doc_template_list_m.jsp?dir_code=" +
  23.                       StrUtil.UrlEncode(leaf.getCode()) + "&dir_name=" +
  24.                       StrUtil.UrlEncode(leaf.getName()));
  25. }
  26. %>
  27. </body>
  28. </html>