这个代码怎么写下去啊?高手赐教啊
数据库名xuexi.mdb
表名: news
表字段:ID, bigclass ,smallclass ,title ,content
INDEX.ASP页面(说明:bigclass=公示栏 smallclass=通知)
读取信息代码
<ul>
<% call newsdy("通知",20,12) %>
</ul>
显示信息页面 xianshi.asp
我现在已经能实现将http://127.0.0.1/xianshi.asp?id=1120 转为http://127.0.0.1/xianshi.asp?/1120.html
但是我的主页面读取的数据记录连接还是动态的http://127.0.0.1/xianshi.asp?id=1120
怎么样将我数据的主页数据连接也显示为伪静态的http://127.0.0.1/xianshi.asp?/1120.html 请高手赐教。
<ul>
<a href="xianshi.asp?/<%=rs("id")%>.html"> <% call newsdy("通知",20,12) %> </a>
</ul>
这样行不通,请高手指教啊