searchframe.jsp 573 B

1234567891011121314151617181920212223242526
  1. <%@ page contentType="text/html;charset=GBK"%>
  2. <%
  3. String viewApp=(String)request.getParameter("vid");
  4. %>
  5. <html>
  6. <head>
  7. <meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=GBK">
  8. <title>组合搜索</title>
  9. </head>
  10. <frameset rows="50%,*" name="main" id ="main">
  11. <table>
  12. <tr>
  13. <td>
  14. <frame src="\jbpm\SearchAd.do?vid=<%= viewApp %>" name="top">
  15. </td>
  16. </tr>
  17. <tr>
  18. <td>
  19. <frame name="bottom" id ="body1" >
  20. <noframes>
  21. <body>
  22. <p>此网页使用了框架,但您的浏览器不支持框架。</p>
  23. </body>
  24. </noframes>
  25. </frameset>
  26. </html>