<% echoContent() Sub echoContent() if getForm("wz","both")<>"" then session("wz")=filterPara(getForm("wz","both")) if getForm("sid","both")<>"" then session("sid")=filterPara(getForm("sid","both")) dim page,keys page=filterPara(getForm("page","both")) keys=filterPara(getForm("keys","both")) if isNul(keys) then alertMsgAndGo "请输入关键词","-1" if isNul(page) then page=1 if isNum(page) then page=clng(page) else echoMsgAndGo "页面不存在",3 end if dim templateobj,channelTemplatePath : set templateobj=new TemplateClass dim typeIds,rsObj,rsObjtid,Tid,rsObjSmalltype,rsObjBigtype Dim templatePath,tempStr templatePath=sitePath&"/"&"templates/"&setting.defaultTemplate&"/"&setting.htmlFilePath&"/search.html" 'die templatePath if not CheckTemplateFile(templatePath) then echo "search.html"&err_16 with templateObj .content=loadFile(templatePath) .parseHtml() .indexpath .parseList 0,page,"searchlist",keys,"searchlist" .parseCommon() echo .content end with set templateobj =nothing : terminateAllObjects End Sub %>