账号通
    

账号  

密码  

1377

查看

5

回复
主题:[求助]卡巴对Ajax页面报错,如何办? [收藏主题] 转到:  
国家贫困县 当前离线

489

主题

0

广播

0

粉丝
添加关注
级别:四年级

用户积分:3749 分
登录次数:84 次
注册时间:2007/7/22
最后登录:2015/7/27
国家贫困县 发表于:2009/5/14 10:17:00   | 只看该作者 查看该作者主题 楼主 
科汛在线考试系统(NET)
卡巴里我把网址加到信任网页都无效
此主题相关图片如下:卡巴01.jpg
卡巴01.jpg

此主题相关图片如下:卡巴02.jpg
卡巴02.jpg
 
  支持(0) | 反对(0) 回到顶部顶端 回到底部底部
国家贫困县 当前离线

489

主题

0

广播

0

粉丝
添加关注
级别:四年级

用户积分:3749 分
登录次数:84 次
注册时间:2007/7/22
最后登录:2015/7/27
国家贫困县 发表于:2009/5/14 19:54:00   | 只看该作者 查看该作者主题 沙发 
 
  支持(0) | 反对(0) 回到顶部顶端 回到底部底部
国家贫困县 当前离线

489

主题

0

广播

0

粉丝
添加关注
级别:四年级

用户积分:3749 分
登录次数:84 次
注册时间:2007/7/22
最后登录:2015/7/27
国家贫困县 发表于:2009/5/14 16:26:00   | 只看该作者 查看该作者主题 藤椅 
科汛在线商城系统(NET)
如何避免这一现象啊
 
  支持(0) | 反对(0) 回到顶部顶端 回到底部底部
一生有你 当前离线

10439

主题

0

广播

18

粉丝
添加关注
级别:版主

用户积分:72521 分
登录次数:1969 次
注册时间:2006/7/1
最后登录:2021/8/25
一生有你 发表于:2009/5/14 10:57:00   | 只看该作者 查看该作者主题 板凳 
科汛智能建站系统
现在的杀毒软件真的无语
 
  支持(0) | 反对(0) 回到顶部顶端 回到底部底部
国家贫困县 当前离线

489

主题

0

广播

0

粉丝
添加关注
级别:四年级

用户积分:3749 分
登录次数:84 次
注册时间:2007/7/22
最后登录:2015/7/27
国家贫困县 发表于:2009/5/14 10:20:00   | 只看该作者 查看该作者主题 报纸 
科汛智能建站系统

看那个ajaxpage.asp文件又没恶意代码。

 

<%@ Language="VBSCRIPT" codepage="936" %>
<%option explicit%>
<!--#include file="../Conn.asp"-->
<!--#include file="../KS_Cls/KS.PublicCls.asp"-->
<!--#include file="../KS_Cls/KS.RCls.asp"-->
<!--#include file="config.asp"-->
<%
response.cachecontrol="no-cache"
response.addHeader "pragma","no-cache"
response.expires=-1
response.expiresAbsolute=now-1
Response.CharSet="gb2312"

Dim KS:Set KS=New PublicCls
Dim KMRFObj:Set KMRFObj= New RefreshFunction

dim CurrPage,RS,SqlStr,iCurPage,ipresize,icount,ipagecount

CurrPage=KS.ChkClng(KS.S("curpage"))
If CurrPage<=0 Then CurrPage=CurrPage+1

Dim L_P,PageParamArr,PerPageNumber
Dim LabelID:LabelID=KS.S("LabelID")   '标签ID
Dim ClassID:ClassID=KS.S("ClassID") '栏目ID
Set RS=Server.CreateObject("ADODB.RECORDSET")
RS.Open "Select LabelContent From KS_Label Where ID='" & LabelID & "'",Conn,1,1
If RS.Eof And RS.Bof Then
Else
 L_P=Replace(Replace(Replace(Replace(RS(0),")}",""),"{$",""),"(",","),"""","")
End If
RS.Close
If L_P="" Then Response.End
 PageParamArr=Split(L_P,",")
 
 
 PerPageNumber=cint(PageParamArr(2))        '每页条数
 Dim Param,Asort,CurrPageStr
 If KS.S("refreshtype") = "Special" Then     '刷新专题
  If DataBaseType=1 Then
    Param = " WHERE charindex('" & KS.S("SpecialID") & "',specialid)>0 AND Verific=1 And DelTF=0"
  Else
   Param = " WHERE instr(specialid,'" & KS.S("SpecialID") & "')>0 AND Verific=1 And DelTF=0"
  End If
 Else
  If CBool(PageParamArr(8)) = True Then
   Param = " WHERE Tid in (" & KS.GetFolderTid(ClassID) & ")  AND Verific=1 AND DelTF=0"
  Else
   Param = " Where Tid='" & ClassID & "' AND Verific=1 AND DelTF=0"
  End If
 End If
   If Lcase(Left(Trim(PageParamArr(7)),2))<>"id" Then 
    ASort = " order by IsTop Desc," & PageParamArr(7) & ",ID Desc"
   Else
    Asort = " order by IsTop Desc," & PageParamArr(7)
   End IF
Dim PageNum,TempStr,totalput,TempIDArrStr
If Cint(PageParamArr(1))<>Cint(ChannelID) Then
 Response.Write "系统检测到标签位置出错!此标签只能放在<font color=#ff0000>" & KS.C_S(ChannelID,1) & "</font>的模板里。"
Else
 RS.Open "SELECT ID FROM " & KS.C_S(ChannelID,2) & Param & ASort, Conn, 1, 1
 IF Not RS.Eof Then
  TotalPut = Conn.Execute("select Count(id) from " & KS.C_S(ChannelID,2) & Param)(0)  '总记录数
  if (TotalPut mod PerPageNumber)=0 then
   PageNum = TotalPut \ PerPageNumber
  else
   PageNum = TotalPut \ PerPageNumber + 1
  end if
  If CurrPage = 1 Then
   TempIDArrStr=GetTempIDArrStr(RS)
  Else
    If (CurrPage - 1) * PerPageNumber < totalPut Then
    RS.Move (CurrPage - 1) * PerPageNumber
    TempIDArrStr=GetTempIDArrStr(RS)
  Else
    CurrPage = 1
    TempIDArrStr=GetTempIDArrStr(RS)
  End If
  End If
  SqlStr = "SELECT ID,Title,Tid,ReadPoint,InfoPurview,Fname,Changes,AddDate,Popular,NewsID,ShowComment,Comment,TitleType,TitleFontColor,TitleFontType FROM " & KS.C_S(ChannelID,2) &" Where ID in (" & TempIDArrStr & ") AND Verific=1 AND DelTF=0 order by IsTop Desc," & PageParamArr(7)
 Dim P_T:P_T=PageParamArr(21)
 If P_T>2 Then P_T=P_T-2   
 TempStr =  KMRFObj.KS_A_L(ChannelID,SqlStr, "", PageParamArr(4), KS.G_O_T_S(PageParamArr(5)), PageParamArr(3), PageParamArr(6), PageParamArr(17), PageParamArr(9), PageParamArr(10), PageParamArr(11), PageParamArr(12), PageParamArr(13), PageParamArr(14), PageParamArr(15), PageParamArr(16),PageParamArr(18),PageParamArr(19),P_T,PageParamArr(22),PageParamArr(23),PageParamArr(24),PageParamArr(25),PageParamArr(26),PageParamArr(27))
 Response.Write TempStr
 Else
 Response.Write("对不起,该栏目下没有任何" & KS.C_S(ChannelID,3)& "!")
 End If
End If
Response.Write "{ks:page}" & TotalPut & "|" & PerPageNumber & "|" & PageNum & "|" & KS.C_S(ChannelID,4) & "|" & KS.C_S(ChannelID,3) & "|" & PageParamArr(20)
rs.close
set rs=nothing
conn.close
set conn=nothing
 
Function GetTempIDArrStr(rs)
 Dim I,K,SQL
 SQL=RS.GetRows(-1)
 For K=0 To Ubound(SQL,2)
   GetTempIDArrStr = GetTempIDArrStr &SQL(0,K) & ","
   I = I + 1
    If I >= PerPageNumber Then Exit For
 Next
 GetTempIDArrStr = Left(GetTempIDArrStr, Len(GetTempIDArrStr) - 1)
End Function
%>

 
  支持(0) | 反对(0) 回到顶部顶端 回到底部底部
一生有你 当前离线

10439

主题

0

广播

18

粉丝
添加关注
级别:版主

用户积分:72521 分
登录次数:1969 次
注册时间:2006/7/1
最后登录:2021/8/25
一生有你 发表于:2009/5/14 10:19:00   | 只看该作者 查看该作者主题 地板 
检查下你的ajaxpage.asp这个文件有没有被插入恶意代码
 
  支持(0) | 反对(0) 回到顶部顶端 回到底部底部
<上一主题 | 下一主题 >
Powered By KesionCMS Version X1
厦门科汛软件有限公司 © 2006-2016 页面执行0.15625秒 powered by KesionCMS 9.0