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

数据库编程

开发平台:

ASP/ASPX

  1. <% Option Explicit %>
  2. <!--#include file="../../FS_Inc/Const.asp" -->
  3. <!--#include file="../../FS_InterFace/MF_Function.asp" -->
  4. <!--#include file="../../FS_InterFace/VS_Function.asp" -->
  5. <!--#include file="../../FS_Inc/Function.asp" -->
  6. <!--#include file="../../FS_Inc/Func_Page.asp" -->
  7. <%'Copyright (c) 2006 Foosun Inc. Code by awen ueuo.cn网络收藏夹
  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,VS_Rs,VS_Sql
  14. Dim AutoDelete,Months
  15. MF_Default_Conn 
  16. MF_Session_TF
  17. if not MF_Check_Pop_TF("VS003") then Err_Show
  18. Dim int_RPP,int_Start,int_showNumberLink_,str_nonLinkColor_,toF_,toP10_,toP1_,toN1_,toN10_,toL_,showMorePageGo_Type_,cPageNo
  19. int_RPP=15 '设置每页显示数目
  20. int_showNumberLink_=10 '数字导航显示数目
  21. showMorePageGo_Type_ = 1 '是下拉菜单还是输入值跳转,当多次调用时只能选1
  22. str_nonLinkColor_="#999999" '非热链接颜色
  23. toF_="<font face=webdings>9</font>"    '首页 
  24. toP10_=" <font face=webdings>7</font>" '上十
  25. toP1_=" <font face=webdings>3</font>" '上一
  26. toN1_=" <font face=webdings>4</font>" '下一
  27. toN10_=" <font face=webdings>8</font>" '下十
  28. toL_="<font face=webdings>:</font>" '尾页
  29. ''得到相关表的值。
  30. Function Get_OtherTable_Value(This_Fun_Sql)
  31. Dim This_Fun_Rs
  32. if instr(This_Fun_Sql," FS_ME_")>0 then 
  33. set This_Fun_Rs = Conn.execute(This_Fun_Sql)
  34. else
  35. set This_Fun_Rs = Conn.execute(This_Fun_Sql)
  36. end if
  37. if not This_Fun_Rs.eof then 
  38. Get_OtherTable_Value = This_Fun_Rs(0)
  39. else
  40. Get_OtherTable_Value = ""
  41. end if
  42. if Err.Number>0 then 
  43. Err.Clear
  44. response.Redirect("../error.asp?ErrCodes=<li>Get_OtherTable_Value未能得到相关数据。错误描述:"&Err.Type&"</li>") : response.End()
  45. end if
  46. set This_Fun_Rs=nothing 
  47. End Function
  48. Function Get_FildValue_List(This_Fun_Sql,EquValue,Get_Type)
  49. '''This_Fun_Sql 传入sql语句,EquValue与数据库相同的值如果是<option>则加上selected,Get_Type=1为<option>
  50. Dim Get_Html,This_Fun_Rs,Text
  51. On Error Resume Next
  52. set This_Fun_Rs = Conn.execute(This_Fun_Sql)
  53. If Err.Number <> 0 then Err.clear : response.Redirect("../error.asp?ErrCodes=<li>"&This_Fun_Sql&"抱歉,传入的Sql语句有问题.或表和字段不存在.</li>")
  54. do while not This_Fun_Rs.eof 
  55. select case Get_Type
  56.   case 1
  57. ''<option>
  58. if instr(This_Fun_Sql,",") >0 then 
  59. Text = This_Fun_Rs(1)
  60. else
  61. Text = This_Fun_Rs(0)
  62. end if
  63. if trim(EquValue) = trim(This_Fun_Rs(0)) then 
  64. Get_Html = Get_Html & "<option value="""&This_Fun_Rs(0)&"""  style=""color:#0000FF"" selected>"&Text&"</option>"&vbNewLine
  65. else
  66. Get_Html = Get_Html & "<option value="""&This_Fun_Rs(0)&""">"&Text&"</option>"&vbNewLine
  67. end if
  68.   case else
  69. exit do : Get_FildValue_List = "Get_Type值传入错误" : exit Function 
  70. end select
  71. This_Fun_Rs.movenext
  72. loop
  73. This_Fun_Rs.close
  74. Get_FildValue_List = Get_Html
  75. End Function 
  76. Function Get_While_Info(Add_Sql,orderby)
  77. Dim Get_Html,This_Fun_Sql,ii,db_ii,Str_Tmp,Arr_Tmp,New_Search_Str,Req_Str,regxp
  78. Str_Tmp = "SID,TID,Steps,QuoteID"
  79. This_Fun_Sql = "select "&Str_Tmp&" from FS_VS_Steps"
  80. if Add_Sql<>"" then This_Fun_Sql = and_where(This_Fun_Sql) &" "& Decrypt(Add_Sql)
  81. if orderby<>"" then This_Fun_Sql = This_Fun_Sql &"  Order By "& replace(orderby,"csed"," Desc")
  82. if request.QueryString("Act")="SearchGo" then 
  83. Arr_Tmp = split(Str_Tmp,",")
  84. for each Str_Tmp in Arr_Tmp
  85. Req_Str = NoSqlHack(Trim(request(Str_Tmp)))
  86. if Req_Str<>"" then 
  87. select case Str_Tmp
  88. case ""
  89. ''字符
  90. New_Search_Str = and_where(New_Search_Str) & Search_TextArr(Req_Str,Str_Tmp,"")
  91. case else
  92. ''数字,日期
  93. regxp = "|<|>|=|<=|>=|<>|"
  94. if instr(regxp,"|"&left(Req_Str,1)&"|")>0 or instr(regxp,"|"&left(Req_Str,2)&"|")>0 then 
  95. New_Search_Str = and_where( New_Search_Str ) & Str_Tmp &" "& Req_Str
  96. elseif instr(Req_Str,"*")>0 then 
  97. if left(Req_Str,1)="*" then Req_Str = "%"&mid(Req_Str,2)
  98. if right(Req_Str,1)="*" then Req_Str = mid(Req_Str,1,len(Req_Str) - 1) & "%"
  99. New_Search_Str = and_where( New_Search_Str ) & Str_Tmp &" like '"& Req_Str &"'"
  100. else
  101. New_Search_Str = and_where( New_Search_Str ) & Str_Tmp &" = "& Req_Str
  102. end if
  103. end select 
  104. end if
  105. next
  106. if New_Search_Str<>"" then This_Fun_Sql = and_where(This_Fun_Sql) & replace(New_Search_Str," where ","")
  107. end if
  108. Str_Tmp = ""
  109. 'response.Write(This_Fun_Sql)
  110. On Error Resume Next
  111. Set VS_Rs = CreateObject(G_FS_RS)
  112. VS_Rs.Open This_Fun_Sql,Conn,1,1
  113. if Err<>0 then 
  114. Err.Clear
  115. response.Redirect("../error.asp?ErrCodes=<li>查询出错:"&Err.Description&"</li><li>请检查字段类型是否匹配.</li>")
  116. response.End()
  117. end if
  118. IF  VS_Rs.eof THEN
  119.   response.Write("<tr class=""hback""><td colspan=15>暂无数据.</td></tr>") 
  120. else
  121. VS_Rs.PageSize=int_RPP
  122. cPageNo=NoSqlHack(Request.QueryString("Page"))
  123. If cPageNo="" Then cPageNo = 1
  124. If not isnumeric(cPageNo) Then cPageNo = 1
  125. cPageNo = Clng(cPageNo)
  126. If cPageNo<=0 Then cPageNo=1
  127. If cPageNo>VS_Rs.PageCount Then cPageNo=VS_Rs.PageCount 
  128. VS_Rs.AbsolutePage=cPageNo
  129.   FOR int_Start=1 TO int_RPP 
  130. Get_Html = Get_Html & "<tr class=""hback"">" & vbcrlf
  131. Get_Html = Get_Html & "<td align=""center""><a href=""VS_Steps.asp?Act=Edit&SID="&VS_Rs("SID")&""" title=""点击修改或查看详细"">"&VS_Rs("SID")&"</a></td>" & vbcrlf
  132. Get_Html = Get_Html & "<td align=""center"">"&Get_OtherTable_Value("select ItemName from FS_VS_Items where TID= "&VS_Rs("TID"))&"</td>" & vbcrlf
  133. Get_Html = Get_Html & "<td align=""center""><a href=""VS_Steps.asp?Act=Edit&SID="&VS_Rs("SID")&""" title=""点击修改或查看详细"">第"&VS_Rs("Steps")&"步</a></td>" & vbcrlf
  134. Get_Html = Get_Html & "<td align=""center"">"&Get_OtherTable_Value("select ItemName from FS_VS_Items where TID= "&VS_Rs("QuoteID"))&"</td>" & vbcrlf
  135. Get_Html = Get_Html & "<td align=""center"" class=""ischeck""><input type=""checkbox"" name=""SID"" id=""SID"" value="""&VS_Rs("SID")&""" /></td>" & vbcrlf
  136. Get_Html = Get_Html & "</tr>" & vbcrlf
  137. VS_Rs.MoveNext
  138.   if VS_Rs.eof or VS_Rs.bof then exit for
  139.       NEXT
  140. END IF
  141. Get_Html = Get_Html & "<tr class=""hback""><td colspan=20 align=""center"" class=""ischeck"">"& vbcrlf &"<table width=""100%"" border=0><tr><td height=30>" & vbcrlf
  142. Get_Html = Get_Html & fPageCount(VS_Rs,int_showNumberLink_,str_nonLinkColor_,toF_,toP10_,toP1_,toN1_,toN10_,toL_,showMorePageGo_Type_,cPageNo)  & vbcrlf
  143. Get_Html = Get_Html & "</td><td align=right><input type=""submit"" name=""submit"" value="" 删除 "" onclick=""javascript:return confirm('确定要删除所选项目吗?');""></td>"
  144. Get_Html = Get_Html &"</tr></table>"&vbNewLine&"</td></tr>"
  145. Get_Html = Get_Html &"</td></tr>"
  146. VS_Rs.close
  147. Get_While_Info = Get_Html
  148. End Function
  149. Sub Del()
  150. if not MF_Check_Pop_TF("VS002") then Err_Show'权限判断
  151. Dim Str_Tmp
  152. if request.QueryString("SID")<>"" then 
  153. Conn.execute("Delete from FS_VS_Steps where SID = "&NoSqlHack(request.QueryString("SID")))
  154. else
  155. Str_Tmp = NoSqlHack(request.form("SID"))
  156. if Str_Tmp="" then response.Redirect("../error.asp?ErrCodes=<li>你必须至少选择一个进行删除。</li>"):response.End()
  157. Str_Tmp = replace(Str_Tmp," ","")
  158. Conn.execute("Delete from FS_VS_Steps where SID in ("&Str_Tmp&")")
  159. end if
  160. response.Redirect("../Success.asp?ErrorUrl="&server.URLEncode( "Vote/VS_Steps.asp?Act=View" )&"&ErrCodes=<li>恭喜,删除成功。</li>")
  161. End Sub
  162. ''================================================================
  163. Sub Save()
  164. if not MF_Check_Pop_TF("VS002") then Err_Show
  165. Dim Str_Tmp,Arr_Tmp,SID,MaxNum
  166. Str_Tmp = "TID,Steps,QuoteID"
  167. Arr_Tmp = split(Str_Tmp,",")
  168. SID = NoSqlHack(request.Form("SID"))
  169. if not isnumeric(SID) or not SID<>"" then SID = 0
  170. VS_Sql = "select "&Str_Tmp&"  from FS_VS_Steps  where SID = "&SID
  171. Set VS_Rs = CreateObject(G_FS_RS)
  172. VS_Rs.Open VS_Sql,Conn,3,3
  173. if not VS_Rs.eof then 
  174. ''修改
  175. for each Str_Tmp in Arr_Tmp
  176. VS_Rs(Str_Tmp) = NoSqlHack(request.Form(Str_Tmp))
  177. next
  178. VS_Rs.update
  179. VS_Rs.close
  180. response.Redirect("../Success.asp?ErrorUrl="&server.URLEncode( "Vote/VS_Steps.asp?Act=Edit&SID="&SID )&"&ErrCodes=<li>恭喜,修改成功。</li>")
  181. else
  182. ''新增
  183. if Conn.execute("Select Count(*) from FS_VS_Steps where TID="&NoSqlHack(request.Form("TID"))&" and  QuoteID="&NoSqlHack(request.Form("QuoteID")))(0)>0 then 
  184. response.Redirect("../error.asp?ErrCodes=<li>你提交的数据已经存在,属于重复提交,请更换关键字。</li>"):response.End()
  185. end if
  186. VS_Rs.addnew
  187. for each Str_Tmp in Arr_Tmp
  188. 'response.Write(Str_Tmp&":"&NoSqlHack(request.Form(Str_Tmp))&"<br>")
  189. VS_Rs(Str_Tmp) = NoSqlHack(request.Form(Str_Tmp))
  190. next
  191. 'response.End()
  192. VS_Rs.update
  193. VS_Rs.close
  194. response.Redirect("../Success.asp?ErrorUrl="&server.URLEncode( "Vote/VS_Steps.asp?Act=Add&TID="&request.Form("TID")&"&Steps="&request.Form("Steps") ) &"&ErrCodes=<li>恭喜,新增成功。</li>")
  195. end if
  196. End Sub
  197. %>
  198. <html xmlns="http://www.w3.org/1999/xhtml">
  199. <HEAD>
  200. <TITLE>FoosunCMS</TITLE>
  201. <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
  202. <link href="../images/skin/Css_<%=Session("Admin_Style_Num")%>/<%=Session("Admin_Style_Num")%>.css" rel="stylesheet" type="text/css">
  203. <script language="JavaScript" src="../../FS_Inc/PublicJS.js"></script>
  204. <script language="JavaScript" src="../../FS_Inc/CheckJs.js"></script>
  205. <script language="JavaScript">
  206. <!--
  207. //点击标题排序
  208. /////////////////////////////////////////////////////////
  209. var Old_Sql = document.URL;
  210. function OrderByName(FildName)
  211. {
  212. var New_Sql='';
  213. var oldFildName="";
  214. if (Old_Sql.indexOf("&filterorderby=")==-1&&Old_Sql.indexOf("?filterorderby=")==-1)
  215. {
  216. if (Old_Sql.indexOf("=")>-1)
  217. New_Sql = Old_Sql+"&filterorderby=" + FildName + "csed";
  218. else
  219. New_Sql = Old_Sql+"?filterorderby=" + FildName + "csed";
  220. }
  221. else
  222. {
  223. var tmp_arr_ = Old_Sql.split('?')[1].split('&');
  224. for(var ii=0;ii<tmp_arr_.length;ii++)
  225. {
  226. if (tmp_arr_[ii].indexOf("filterorderby=")>-1)
  227. {
  228. oldFildName = tmp_arr_[ii].substring(tmp_arr_[ii].indexOf("filterorderby=") + "filterorderby=".length , tmp_arr_[ii].length);
  229. break;
  230. }
  231. }
  232. oldFildName.indexOf("csed")>-1?New_Sql = Old_Sql.replace('='+oldFildName,'='+FildName):New_Sql = Old_Sql.replace('='+oldFildName,'='+FildName+"csed");
  233. }
  234. //alert(New_Sql);
  235. location = New_Sql;
  236. }
  237. /////////////////////////////////////////////////////////
  238. -->
  239. </script>
  240. <head>
  241. <body>
  242. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="table">
  243.      <tr  class="hback"> 
  244.             
  245.     <td colspan="10" align="left" class="xingmu" >多步投票管理</td>
  246. </tr>
  247.   <tr  class="hback"> 
  248.     <td colspan="10" height="25">
  249.  <a href="VS_Steps.asp">管理首页</a> | <a href="VS_Steps.asp?Act=Add">新增</a> | <a href="VS_Steps.asp?Act=Search">查询</a>
  250. </td>
  251.   </tr>
  252. </table>
  253. <%
  254. '******************************************************************
  255. select case request.QueryString("Act")
  256. case "Add","Edit","Search"
  257. Add_Edit_Search
  258. case "View","SearchGo",""
  259. View
  260. case "Save"
  261. Save
  262. case "Del"
  263. Del
  264. case "OtherSet"
  265. OtherSet(request.QueryString("Sql"))
  266. case else
  267. response.Redirect("../error.asp?ErrorUrl=&ErrCodes=<li>错误的参数传递。</li>") : response.End()
  268. end select
  269. '******************************************************************
  270. Sub View()
  271. if not MF_Check_Pop_TF("VS003") then Err_Show
  272. %>
  273. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="table">
  274. <form name="form1" id="form1" method="post" action="?Act=Del">
  275.    <tr  class="hback"> 
  276.       <td align="center" class="xingmu"><a href="javascript:OrderByName('SID')" class="sd"><b>[ID]</b></a> 
  277.         <span id="Show_Oder_SID"></span></td>
  278.       <td align="center" class="xingmu" ><a href="javascript:OrderByName('TID')" class="sd"><b>调查主题</b></a> 
  279.         <span id="Show_Oder_TID"></span></td>
  280.       <td align="center" class="xingmu" ><a href="javascript:OrderByName('Steps')" class="sd"><b>顺序号</b></a> 
  281.         <span id="Show_Oder_Steps"></span></td>
  282.       <td align="center" class="xingmu" ><a href="javascript:OrderByName('QuoteID')" class="sd"><b>调用主题</b></a> 
  283.         <span id="Show_Oder_QuoteID"></span></td>
  284.       <td width="2%" align="center" class="xingmu"><input name="ischeck" type="checkbox" value="checkbox" onClick="selectAll(this.form)" /></td>
  285.     </tr>
  286.     <%
  287. response.Write( Get_While_Info( request.QueryString("Add_Sql"),request.QueryString("filterorderby") ) )
  288. %>
  289.    </form>
  290. </table>
  291. <%End Sub
  292. Sub Add_Edit_Search()
  293. if not MF_Check_Pop_TF("VS003") then Err_Show
  294. Dim Bol_IsEdit,SID,TID,Steps,QuoteID
  295. Bol_IsEdit = false
  296. if request.QueryString("Act")="Edit" then
  297. SID = request.QueryString("SID")
  298. if SID="" then response.Redirect("../error.asp?ErrorUrl=&ErrCodes=<li>必要的SID没有提供。</li>") : response.End()
  299. VS_Sql = "select SID,TID,Steps,QuoteID from FS_VS_Steps where SID = "& SID
  300. Set VS_Rs = CreateObject(G_FS_RS)
  301. VS_Rs.Open VS_Sql,Conn,1,1
  302. if not VS_Rs.eof then 
  303. Bol_IsEdit = True
  304. TID = VS_Rs("TID")
  305. Steps = VS_Rs("Steps")
  306. QuoteID = VS_Rs("QuoteID")
  307. end if
  308. elseif request.QueryString("Act") = "Add" then 
  309. TID = request.QueryString("TID")
  310. Steps = request.QueryString("Steps")
  311. if Steps = "" then 
  312. Steps = 1
  313. else
  314. if isnumeric(Steps) then 
  315. Steps = cint(Steps)+1
  316. else
  317. Steps = 1
  318. end if
  319. end if
  320. QuoteID = ""
  321. end if
  322. %>
  323. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="table">
  324.   <form name="form1" id="form1" method="post" <%if request.QueryString("Act")<>"Search" then response.Write("action=""?Act=Save"" onsubmit=""return chkinput();""") else response.Write("action=""?Act=SearchGo""") end if%>>
  325.     <tr  class="hback"> 
  326.       <td colspan="3" align="left" class="xingmu" >投票主题信息<%if Bol_IsEdit then  response.Write("<input type=""hidden"" name=""SID"" id=""SID"" value="""&VS_Rs("SID")&""">") end if%></td>
  327. </tr>
  328. <%if request.QueryString("Act")="Search" then %>
  329.     <tr class="hback"> 
  330.       <td width="100" align="right">自动编号</td>
  331.       <td>
  332.    <input type="text" name="SID" id="SID" size="11" maxlength="11">
  333.       </td>
  334.     </tr>
  335. <%end if%>
  336.     <tr  class="hback"> 
  337.       <td align="right">调查主题</td>
  338.       <td>
  339. <select name="TID" id="TID" onChange="Do.these('TID',function(){return isEmpty('TID','TID_Alt')})">
  340. <option value="">请选择</option>
  341. <%=Get_FildValue_List("select TID,Theme from FS_VS_Theme",TID,1)%>
  342. </select>
  343. <span id="TID_Alt"></span>
  344.   </td>
  345.     </tr>
  346.     <tr  class="hback"> 
  347.       <td align="right">顺序号</td>
  348.       <td>
  349. <input type="text" name="Steps" id="Steps" size="30" maxlength="3" onFocus="Do.these('Steps',function(){return isEmpty('Steps','Steps_Alt')&&isNumber('Steps','Steps_Alt','必须正整数',true)})" onKeyUp="Do.these('Steps',function(){return isEmpty('Steps','Steps_Alt')&&isNumber('Steps','Steps_Alt','必须正整数',true)})" value="<%=Steps%>">
  350. <span id="Steps_Alt"></span>
  351.   </td>
  352.     </tr>
  353.     <tr  class="hback"> 
  354.       <td align="right">调用主题</td>
  355.       <td>
  356. <select name="QuoteID" id="QuoteID" onChange="Do.these('QuoteID',function(){return isEmpty('QuoteID','QuoteID_Alt')})">
  357. <option value="">请选择</option>
  358. <%=Get_FildValue_List("select TID,Theme from FS_VS_Theme",QuoteID,1)%>
  359. </select>
  360. <span id="QuoteID_Alt"></span>
  361.   </td>
  362.     </tr>
  363.    <tr class="hback"> 
  364.       <td colspan="4">
  365.   <table border="0" width="100%" cellpadding="0" cellspacing="0">
  366.           <tr> 
  367.             <td align="center"> <input type="submit"value=" 确定提交 "/> 
  368.               &nbsp; <input type="reset" value=" 重置 " />
  369.      &nbsp; <input type="button" name="btn_todel" value=" 删除 " onClick="if(confirm('确定删除该项目吗?')) location='<%=server.URLEncode("VS_Steps.asp?Act=Del&SID="&SID)%>'">
  370.             </td>
  371.           </tr>
  372.         </table>
  373.       </td>
  374.     </tr>
  375.   </form>
  376. </table>
  377. <%
  378. End Sub
  379. set VS_Rs = Nothing
  380. Conn.close
  381. %>
  382. <script language="JavaScript">
  383. <!--//判断后将排序完善.字段名后面显示指示
  384. //打开后根据规则显示箭头
  385. var Req_FildName;
  386. if (Old_Sql.indexOf("filterorderby=")>-1)
  387. {
  388. var tmp_arr_ = Old_Sql.split('?')[1].split('&');
  389. for(var ii=0;ii<tmp_arr_.length;ii++)
  390. {
  391. if (tmp_arr_[ii].indexOf("filterorderby=")>-1)
  392. {
  393. if(Old_Sql.indexOf("csed")>-1)
  394. {Req_FildName = tmp_arr_[ii].substring(tmp_arr_[ii].indexOf("filterorderby=") + "filterorderby=".length , tmp_arr_[ii].indexOf("csed"));break;}
  395. else
  396. {Req_FildName = tmp_arr_[ii].substring(tmp_arr_[ii].indexOf("filterorderby=") + "filterorderby=".length , tmp_arr_[ii].length);break;}
  397. }
  398. }
  399. if (document.getElementById('Show_Oder_'+Req_FildName)!=null)  
  400. {
  401. if(Old_Sql.indexOf(Req_FildName + "csed")>-1)
  402. {
  403. eval('Show_Oder_'+Req_FildName).innerText = '↓';
  404. }
  405. else
  406. {
  407. eval('Show_Oder_'+Req_FildName).innerText = '↑';
  408. }
  409. }
  410. }
  411. ///////////////////////////////////////////////////////// 
  412. function chkinput()
  413. {
  414. return isEmpty('TID','TID_Alt') && isEmpty('Steps','Steps_Alt') && isNumber('Steps','Steps_Alt','必须正整数',true) && isEmpty('QuoteID','QuoteID_Alt');
  415. }
  416. function SearchAdd()
  417. {
  418. if(document.all.StartDate.value) if (document.all.StartDate.value.indexOf('>=')<0) {document.all.StartDate.value='>=#'+document.all.StartDate.value+'#'};
  419. if(document.all.EndDate.value) if (document.all.EndDate.value.indexOf('<=')<0) {document.all.EndDate.value='<=#'+document.all.EndDate.value+'#'};
  420. }
  421. -->
  422. </script>
  423. <!-- Powered by: FoosunCMS4.0系列,Company:Foosun Inc. -->