RoadFlow2.1 临时演示

Instance.aspx 1.2KB

123456789101112131415161718192021222324252627282930313233
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Instance.aspx.cs" Inherits="WebForm.Platform.WorkFlowTasks.Instance" %>
  2. <!DOCTYPE html>
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head runat="server">
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  6. <title></title>
  7. </head>
  8. <body style="padding: 0; overflow: hidden;">
  9. <form id="form1" runat="server">
  10. <table cellpadding="0" cellspacing="0" border="0" width="100%">
  11. <tr>
  12. <td style="width: 200px; vertical-align: top; padding: 5px 5px 0 5px;">
  13. <iframe id="Iframe1" frameborder="0" scrolling="auto" src="InstanceTree.aspx?<%=query %>" style="width:100%;margin:0;padding:0;"></iframe>
  14. </td>
  15. <td class="organizesplit" style="padding: 0;">
  16. <iframe id="Iframe2" frameborder="0" scrolling="auto" src="InstanceList.aspx?<%=query %>" style="width:100%;margin:0;padding:0;"></iframe>
  17. </td>
  18. </tr>
  19. </table>
  20. <script type="text/javascript">
  21. $(function ()
  22. {
  23. var height = $(window).height();
  24. $('#Iframe1').attr('height', height);
  25. $('#Iframe2').attr('height', height);
  26. });
  27. </script>
  28. </form>
  29. </body>
  30. </html>