如果你遇到了在不同模型按关键字tags关联不出来,请按以下方法修改下即可
打开ks_cls/kesion.label.functioncls.asp
找到约315行左右的如下代码
Case 1 '按关键词关联
Dim KeyWords
If ModelID<>"0" Then
KeyWords=LFCls.GetSingleFieldValue("Select top 1 KeyWords From " & KS.C_S(ModelID,2) &" Where ID=" & KS.ChkClng(FCls.RefreshInfoID))
Else
KeyWords=LFCls.GetSingleFieldValue("Select top 1 KeyWords From [KS_ItemInfo] Where InfoID=" & KS.ChkClng(FCls.RefreshInfoID) &" And ChannelID=" & FCls.ChannelID)
End If
If KS.IsNul(KeyWords) Then
Param=" Where 1=0"
Else
将上面红色的代码替换为如下代码即可:
If FCls.ChannelID<>"0" Then
KeyWords=LFCls.GetSingleFieldValue("Select top 1 KeyWords From " & KS.C_S(FCls.ChannelID,2) &" Where ID=" & KS.ChkClng(FCls.RefreshInfoID))