新闻栏目下的文章不显示
作者:cmscn 日期:2005-05-20
这是news_list.asp文件代码问题,如果没有action=more,或pic、good、hot、search等参数,就不会列表显示,如果对asp代码不熟悉,就使用news_list.asp?action=more&c_id=XX的写法,如果要改ASP代码,就找到(我的代码做了许多修改,不知道大家是不是一样):
引用内容
select case action
case "pic"
tit="图片新闻"
case "good"
tit="推荐新闻"
case "hot"
tit="热门新闻"
case "search"
tit="新闻搜索"
case else
if int(cid)<1 then call format_redirect("news.asp")
if action<>"more" then action=""
tit="新闻列表"
end select
修改为:
引用内容
select case action
case "pic"
tit="图片新闻"
case "good"
tit="推荐新闻"
case "hot"
tit="热门新闻"
case "search"
tit="新闻搜索"
case else
if int(cid)<1 then call format_redirect("news.asp")
if action<>"more" then action="more"
tit="新闻列表"
end select
就是改了if action<>"more" then action="more"这一句话
评论: 7 | 引用: 0 | 查看次数: 588
发表评论