e5cfa0765644b0312c8938f68c37bbf938b28d54.svn-base 1.2 KB

1234567891011121314151617181920212223242526
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%
  3. String path = request.getContextPath();
  4. %>
  5. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  6. <html xmlns="http://www.w3.org/1999/xhtml">
  7. <head>
  8. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  9. <title>弹窗中的表单提交</title>
  10. <!--框架必需start-->
  11. <script type="text/javascript" src="<%=path%>/libs/js/jquery.js"></script>
  12. <script type="text/javascript" src="<%=path%>/libs/js/language/cn.js"></script>
  13. <script type="text/javascript" src="<%=path%>/libs/js/framework.js"></script>
  14. <link href="<%=path%>/libs/css/import_basic.css" rel="stylesheet" type="text/css"/>
  15. <link rel="stylesheet" type="text/css" id="skin" prePath="<%=path%>/"/>
  16. <link rel="stylesheet" type="text/css" id="customSkin"/>
  17. <!--框架必需end-->
  18. </head>
  19. <body>
  20. <div class="box1" panelWidth="800">
  21. 弹窗中表单提交与页面表单提交的区别在于弹窗中成功提交表单后需要关闭窗口并刷新父页面或者重新加载数据。<br/>其余与页面表单提交一样。<br/><br/>
  22. 示例见DataGrid表格或综合示例中的添加用户功能。<br/><br/>
  23. </div>
  24. </body>
  25. </html>