RoadFlow2.1 临时演示

Open.aspx 1.4KB

12345678910111213141516171819202122232425262728293031323334
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Open.aspx.cs" Inherits="WebForm.Platform.WorkFlowDesigner.Open" %>
  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. <%
  10. string query = "appid=" + Request.QueryString["appid"] + "&iframeid=" + Request.QueryString["iframeid"] + "&openerid=" + Request.QueryString["openerid"];
  11. %>
  12. <table cellpadding="0" cellspacing="1" border="0" width="100%">
  13. <tr>
  14. <td style="width:200px; vertical-align:top; padding:5px 5px 0 5px;">
  15. <iframe id="Iframe1" frameborder="0" scrolling="auto" src="Open_Tree.aspx?<%=query %>" style="width:100%;margin:0;padding:0;"></iframe>
  16. </td>
  17. <td class="organizesplit" style="padding:0;">
  18. <iframe id="Iframe2" frameborder="0" scrolling="auto" src="Open_List.aspx?<%=query %>" style="width:100%;margin:0;padding:0;"></iframe>
  19. </td>
  20. </tr>
  21. </table>
  22. <script type="text/javascript">
  23. $(function ()
  24. {
  25. var height = $(window).height();
  26. $('#Iframe1').attr('height', height - 10);
  27. $('#Iframe2').attr('height', height - 10);
  28. });
  29. </script>
  30. </body>
  31. </html>