国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
3.2KB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
  5. <title>更新自由列表</title>
  6. <link rel="stylesheet" href="../static/web/css/bootstrap.min.css">
  7. <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
  8. <link rel="stylesheet" href="../static/web/css/admin.css">
  9. </head>
  10. <body>
  11. <table width="98%" border="0" cellpadding="1" cellspacing="1" align="center" class="table maintable mt-3 mb-3">
  12. <form name="form1" action="makehtml_freelist_action.php" method="get" target='stafrm'>
  13. <tr>
  14. <td colspan="2" background="../static/web/img/tbg.gif">
  15. <table width="98%" border="0" cellpadding="0" cellspacing="0" class="table table-borderless">
  16. <tr>
  17. <td width="24%" style="padding-left:10px">更新自由列表</td>
  18. <td width="76%" align="right"><button type="button" name="b113" onClick="location='freelist_main.php';" class="btn btn-success btn-sm">管理自由列表</button>
  19. </td>
  20. </tr>
  21. </table>
  22. </td>
  23. </tr>
  24. <tr>
  25. <td height="26">&nbsp;&nbsp;起始ID:</td>
  26. <td height="26"><input name="startid" type="text" id="startid" size="10" <?php if(!empty($aid)) echo " value='$aid'"; ?>>(空或0表示从头开始)
  27. </td>
  28. </tr>
  29. <tr>
  30. <td height="26">&nbsp;&nbsp;结束ID:</td>
  31. <td height="26">
  32. &nbsp;&nbsp;
  33. <input name="endid" type="text" id="endid" size="10" <?php if(!empty($aid)) echo " value='$aid'"; ?>>
  34. (空或0表示直到结束ID)
  35. </td>
  36. </tr>
  37. <tr>
  38. <td height="26">&nbsp;&nbsp;每批生成:</td>
  39. <td height="26"><input name="pagesize" type="text" id="pagesize" value="100" size="8"> 个文件</td>
  40. </tr>
  41. <tr>
  42. <td height="36" colspan="2" align="center">
  43. <button type="button" onClick="document.form1.submit();" class="btn btn-success btn-sm">开始更新</button>
  44. </td>
  45. </tr>
  46. </form>
  47. <tr bgcolor="#f8f8f8">
  48. <td width="24%">结果:</td>
  49. <td width="76%" align="right">
  50. <script language='javascript'>
  51. function ResizeDiv(obj, ty) {
  52. if (ty == "+") document.all[obj].style.pixelHeight += 50;
  53. else if (document.all[obj].style.pixelHeight > 80) document.all[obj].style.pixelHeight = document.all[obj].style.pixelHeight - 50;
  54. }
  55. </script>
  56. <a href="javascript:;" onClick="ResizeDiv('mdv','+');" class="btn btn-success btn-sm">增大</a>
  57. <a href="javascript:;" onClick="ResizeDiv('mdv','-');" class="btn btn-success btn-sm">缩小</a>
  58. </td>
  59. </tr>
  60. <tr>
  61. <td colspan="2" id="mtd">
  62. <div id='mdv' style='width:100%;height:100;'>
  63. <iframe name="stafrm" frameborder="0" id="stafrm" width="100%" height="100%"></iframe>
  64. </div>
  65. <script language="JavaScript">
  66. document.all.mdv.style.pixelHeight = screen.height - 360;
  67. </script>
  68. </td>
  69. </tr>
  70. </table>
  71. </body>
  72. </html>