RoadFlow2.1 临时演示

SetApp.aspx 1.2KB

12345678910111213141516171819202122232425262728293031
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SetApp.aspx.cs" Inherits="WebForm.Platform.RoleApp.SetApp" %>
  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:2px 0; overflow:hidden;">
  9. <table cellpadding="0" cellspacing="1" border="0" width="100%">
  10. <tr>
  11. <td style="width:270px; vertical-align:top; padding:5px 5px 0 5px;">
  12. <iframe id="Iframe1" frameborder="0" scrolling="auto" src="Tree.aspx<%=Request.Url.Query %>" style="width:100%;margin:0;padding:0;"></iframe>
  13. </td>
  14. <td class="organizesplit">
  15. <iframe id="Iframe2" frameborder="0" scrolling="auto" src="Empty.aspx<%=Request.Url.Query %>" style="width:100%;margin:0;padding:0;"></iframe>
  16. </td>
  17. </tr>
  18. </table>
  19. <script type="text/javascript">
  20. $(function ()
  21. {
  22. var height = $(window).height();
  23. $('#Iframe1').attr('height', height - 10);
  24. $('#Iframe2').attr('height', height - 10);
  25. });
  26. </script>
  27. </body>
  28. </html>