第一步:建立首页调用代码 后台:首页调用,点击“添加首页调遥”,新增一个首页调用项。下面以调用最新贴为例: ●调用标识名称:koomv_01 <img src="tumiab/e1open.gif"> <a href="dispbbs.asp?boardid={$Boardid}&ID={$ID}&replyID={$ReplyID}" target="_blank" title="{$Topic}">{$Topic}</a> [<a href="dispuser.asp?name={$UserName}" target="_blank"><font color="green">{$UserName}</font></a>]<br> 红色的图片路径自己改。 如果你不小图片就把<img src="tumiab/e1open.gif">删掉就可以了 设置后好后提交,一个首页调用代码就好了。 其他的依次类推,聪明如你,依葫芦画瓢总会吧,嘿嘿…… 第二步:动网默认风格分页面模板(page_index)界面风格管理template.html(0)找到如下代码: <a href="infolist.asp?t=toplist&orders=7">用户列表</a> </div> </div> 在下面插入如下代码: <!--首页调用代码开始--> <br /> <table align="center" cellpadding="3" cellspacing="1" class="tableborder1"> <tr> <th>社区最新贴</th> <th>每月最热贴</th> <th>社区精华贴</th> </tr> <tr> <td class="tablebody1" align="left"><script src="Dv_News.asp?GetName=koomv_01"></script></td> <td class="tablebody1" align="left"><script src="Dv_News.asp?GetName=koomv_02"></script></td> <td class="tablebody1" align="left"><script src="Dv_News.asp?GetName=koomv_03"></script></td> </tr> </table> <!--首页调用代码结束--> 红色的代码用你在首页设置时生成的代码依次替换就好了。 |