深圳市大城小我信息技术服务有限公司
深圳市龙华区龙华街道华悦龙庭8楼
田先生
13428994037
13428994037
首先FTP链接到你的网站根目录
然后找到根目录下的FUNCTION 文件夹打开并找到 c_system_base.asp 进行编辑修改,
搜索定位:Day(objArticle.PostTime),2) ,找到以下代码:
If (Not objRS.bof) And (Not objRS.eof) Then
For i=1 to ZC_PREVIOUS_COUNT
Set objArticle=New TArticle
If objArticle.LoadInfoByID(objRS(“log_ID”)) Then
strPrevious=strPrevious & “
["& Right("0" & Month(objArticle.PostTime),2) & "/" & Right("0" & Day(objArticle.PostTime),2) &"]" & objArticle.Title & "
”
End If
Set objArticle=Nothing
objRS.MoveNext
If objRS.eof Then Exit For
Next
End If
objRS.close
以上代码一般在:2172至2183行之间,找到上面绿色部分:["& Right("0" & Month(objArticle.PostTime),2) & "/" & Right("0" & Day(objArticle.PostTime),2) &"] 将其删除即可。修改完后进行文件重建即可生效 。