国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

92 satır
3.8KB

  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
  4. <title>更新TAG HTML</title>
  5. <link href="css/base.css" rel="stylesheet" type="text/css">
  6. </head>
  7. <body background='images/allbg.gif' leftmargin='8' topmargin='8'>
  8. <table width="98%" border="0" cellpadding="3" cellspacing="1" bgcolor="#D1DDAA" align="center">
  9. <form name="form1" action="makehtml_tag_action_list.php" method="get" target='stafrm'>
  10. <tr>
  11. <td height="28" colspan="2" background='images/tbg.gif'>
  12. <table width="98%" border="0" cellpadding="0" cellspacing="0">
  13. <tr>
  14. <td width="30%" height="18"><strong>更新TAG HTML</strong> </td>
  15. <td width="70%" align="right">
  16. <a href="tags_main.php" class="coolbg np">TAG标签管理</a>
  17. </td>
  18. </tr>
  19. </table>
  20. </td>
  21. </tr>
  22. <tr>
  23. <td width="300" valign="top" bgcolor="#FFFFFF">选择TAG:</td>
  24. <td width="377" valign="top" bgcolor="#FFFFFF">
  25. <?php
  26. $sql="select * from #@__tagindex order by tag asc";
  27. $dsql->Execute('al',$sql);
  28. echo "<select name='tagid' style='width:300px'>\r\n";
  29. if($tid == 0) echo "<option value='0' selected='1'>更新所有TAG...</option>\r\n";
  30. while($row=$dsql->GetObject('al')){
  31. if($tid > 0 && $tid == $row->id) echo "<option value='".$row->id."' selected='1'>".$row->tag."</option>";
  32. else echo "<option value='".$row->id."'>".$row->tag."</option>";
  33. }
  34. echo "</select>";
  35. ?>
  36. </td>
  37. </tr>
  38. <tr>
  39. <td height="20" valign="top" bgcolor="#FFFFFF">每次最大创建页数:</td>
  40. <td height="20" valign="top" bgcolor="#FFFFFF"><input name="maxpagesize" type="text" id="maxpagesize" value="50"
  41. size="10">
  42. 个文件 </td>
  43. </tr>
  44. <tr>
  45. <td height="20" valign="top" bgcolor="#FFFFFF">说明:</td>
  46. <td height="20" valign="top" bgcolor="#FFFFFF">
  47. 更新所有TAG将会智能更新在[TAG标签管理]中重新获取更新的内容<br>
  48. TAG首页模板文件:<?php echo $cfg_templets_dir;?>/<?php echo $cfg_df_style?>/tag.htm<br>
  49. TAG列表页模板文件:<?php echo $cfg_templets_dir;?>/<?php echo $cfg_df_style?>/taglist.htm<br>
  50. 生成静态文件后,访问动态文件则直接跳转到静态文件,如果需要动态访问,删除对应文件即可。
  51. </td>
  52. </tr>
  53. <tr>
  54. <td height="20" colspan="2" bgcolor="#FAFAF1" align="center">
  55. <input name="b112" type="button" class="coolbg np" value="生成TAG HTML"
  56. onClick="document.form1.action='makehtml_taglist_action.php';document.form1.submit();" style="width:120px">
  57. </td>
  58. </tr>
  59. </form>
  60. <tr bgcolor="#F9FCEF">
  61. <td height="20" colspan="2">
  62. <table width="100%">
  63. <tr>
  64. <td width="74%">进行状态: </td>
  65. <td width="26%" align="right">
  66. <script language='javascript'>
  67. function ResizeDiv(obj, ty) {
  68. if (ty == "+") document.all[obj].style.pixelHeight += 50;
  69. else if (document.all[obj].style.pixelHeight > 80) document.all[obj].style.pixelHeight = document.all[obj].style.pixelHeight - 50;
  70. }
  71. </script>
  72. [<a href='#' onClick="ResizeDiv('mdv','+');">增大</a>] [<a href='#' onClick="ResizeDiv('mdv','-');">缩小</a>]
  73. </td>
  74. </tr>
  75. </table>
  76. </td>
  77. </tr>
  78. <tr bgcolor="#FFFFFF">
  79. <td colspan="2" id="mtd">
  80. <div id='mdv' style='width:100%;height:350px;'>
  81. <iframe name="stafrm" frameborder="0" id="stafrm" width="100%" height="100%"></iframe>
  82. </div>
  83. </td>
  84. </tr>
  85. </table>
  86. </body>
  87. </html>