st_C_label.asp
上传用户:jisenq
上传日期:2014-06-29
资源大小:7216k
文件大小:3k
源码类别:

数据库编程

开发平台:

ASP/ASPX

  1. <% Option Explicit %>
  2. <!--#include file="../../FS_Inc/Const.asp" -->
  3. <!--#include file="../../FS_Inc/Function.asp"-->
  4. <!--#include file="../../FS_InterFace/MF_Function.asp" -->
  5. <!--#include file="../../FS_InterFace/NS_Function.asp" -->
  6. <!--#include file="../../FS_Inc/Func_page.asp" -->
  7. <%
  8. Response.Buffer = True
  9. Response.Expires = -1
  10. Response.ExpiresAbsolute = Now() - 1
  11. Response.Expires = 0
  12. Response.CacheControl = "no-cache"
  13. Dim Conn
  14. MF_Default_Conn
  15. 'session判断
  16. MF_Session_TF 
  17. if not MF_Check_Pop_TF("MF_sPublic") then Err_Show
  18. %>
  19. <html>
  20. <head>
  21. <title>新闻标签管理</title>
  22. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  23. <link href="../images/skin/Css_<%=Session("Admin_Style_Num")%>/<%=Session("Admin_Style_Num")%>.css" rel="stylesheet" type="text/css">
  24. <base target=self>
  25. </head>
  26. <body class="hback">
  27. <script language="JavaScript" src="../../FS_Inc/PublicJS.js" type="text/JavaScript"></script>
  28.   <form  name="form1" method="post">
  29.   <table width="98%" height="29" border="0" align=center cellpadding="3" cellspacing="1" class="table" valign=absmiddle>
  30.     <tr class="hback" > 
  31.       <td height="27"  align="Left" class="xingmu"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
  32.           <tr> 
  33.             <td width="41%" class="xingmu"><strong>常规标签创建</strong></td>
  34.             <td width="59%"><div align="right"> 
  35.                 <input name="button4" type="button" onClick="window.returnValue='';window.close();" value="关闭">
  36.             </div></td>
  37.           </tr>
  38.         </table></td>
  39.     </tr>
  40.   </table>
  41.   <table width="98%" border="0" align="center" cellpadding="5" cellspacing="1" class="table">
  42.     <tr>
  43.       <td colspan="2" class="xingmu">统计系统</td>
  44.     </tr>
  45.     <tr>
  46.       <td width="19%" class="hback"><div align="right">统计类型</div></td>
  47.       <td width="81%" class="hback">
  48.    <select name="sstype" id="sstype">
  49.         <option value="0" selected>无图标</option>
  50.         <option value="1">有图标</option>
  51.         <option value="2">文字统计</option>
  52.       </select>      </td>
  53.     </tr>
  54.     
  55.     <tr> 
  56.       <td class="hback"><div align="right">路径</div></td>
  57.       <td class="hback"><select name="Path" id="Path">
  58.         <option value="0" selected>相对路径</option>
  59.         <option value="1">绝对路径</option>
  60.       </select>
  61.       </td>
  62.     </tr>
  63.     
  64. <tr>
  65.       <td class="hback"><div align="right"></div></td>
  66.       <td class="hback"><input name="button" type="button" onClick="ok(this.form);" value="确定创建此标签">
  67.         <input name="button" type="button" onClick="window.returnValue='';window.close();" value=" 取 消 "></td>
  68.     </tr>
  69.   </table>
  70. <script language="JavaScript" type="text/JavaScript">
  71. function ok(obj)
  72. {
  73. var retV = '{FS:SS=SSTYPE┆';
  74. retV+='方式$' + obj.sstype.value + '┆';
  75. retV+='路径$' + obj.Path.value;
  76. retV+='}';
  77. window.parent.returnValue = retV;
  78. window.close();
  79. }
  80. </script>
  81.   </form>
  82. </body>
  83. </html>