为软件下载加个开关
作者:cmscn 日期:2007-02-07
①在admin_config_edit.asp里面找到<% tmp1=format_mid_num(26) %>,在其上面
添加
<% tmp1=format_mid_num(41) %>
<tr class=tr1>
<td>开放下载:</td>
<td><input type=radio name=web_setup_41 value='1'<% if int(tmp1)=1 then response.write " checked" %>> 是 <input type=radio name=web_setup_41 value='0'<% if int(tmp1)<>1 then response.write " checked" %>> 否</td>
<td class=gray>是否开放下载栏目的软件下载</td>
</tr>
其中41可以修改为适合自己的数字.
②打开down_view.asp,找到这段内容:
iframe=true
is_download=true
down_26=int(format_mid_num(26))
将其更改为:
iframe=true
is_download=false '下载开关
if int(format_mid_num(41))<>0 then
is_download=true
end if
down_26=int(format_mid_num(26))
评论: 8 | 引用: 0 | 查看次数: 747
发表评论