在http://域名/ask/zj.asp页面有按推荐查看,但后台无法设置推荐属性。
以下给出修改方法:
打开admin/ks.askzj.asp
<tr class="tdbg">
<td class="clefttitle" style='text-align:right'>是否固顶:</td>
<td colspan=3>
<input type="radio" name="istop" value="0"<%if ks.chkclng(rs("istop"))="0" then response.write " checked"%>>否
<input type="radio" name="istop" value="1"<%if rs("istop")="1" then response.write " checked"%>>是
</td>
</tr>
<tr class="tdbg">
<td class="clefttitle" style='text-align:right'>是否推荐:</td>
<td colspan=3>
<input type="radio" name="recommend" value="0"<%if ks.chkclng(rs("recommend"))="0" then response.write " checked"%>>否
<input type="radio" name="recommend" value="1"<%if rs("recommend")="1" then response.write " checked"%>>是
</td>
</tr>
<tr class="tdbg">
<td class="clefttitle"></td>
<td colspan=3><input type="submit" class="button" value="确定保存" /></td>
</tr>
增加红色代码,
再往下找,同样加红色的
RS.Open "Select top 1 * From KS_ASKZJ Where ID=" & KS.ChkClng(Request("id")),Conn,1,3
IF Not RS.Eof Then
RS("AddDate")=Now
RS("Status")=KS.ChkClng(Request("status"))
RS("istop")=KS.ChkClng(request("IsTop"))
RS("recommend")=KS.ChkClng(request("recommend"))
RS("RealName")=RealName
RS("Birthday")=Birthday
RS("qq")=qq
RS("Sex")=Sex
这样在修改里就可以设置推荐了。