原来是用html写的,有几行比如:
1. content1
2. content2
...
5. content5
用户按第几行就跳到一个html页,原来的语句是:
<a href="content1.htm" target="searchresult">
有5行就写5个这样的句子。
现在要用动态的。不知道有几行,(从数据库中读出的),然后都转到同一个asp中,在新asp中判断是第几行,并显示相应的内容。
你写成这样:
<%do while not rs.eof%>
<a href="searchresult.asp?itemid=<%=rs.itemid%> "> <%=rs.item%></a>
<%loop%>
//searchresult.asp中这样接:
<%
dim itemid
itemid=request.querystring("flag")
//此处再用itemid的值写SQL,什么任务不都完成了嘛。
%>
不过我劝你还是别学了,国内至少有1000万人会写,而且其中999万在失业。
1. content1
2. content2
...
5. content5
用户按第几行就跳到一个html页,原来的语句是:
<a href="content1.htm" target="searchresult">
有5行就写5个这样的句子。
现在要用动态的。不知道有几行,(从数据库中读出的),然后都转到同一个asp中,在新asp中判断是第几行,并显示相应的内容。
你写成这样:
<%do while not rs.eof%>
<a href="searchresult.asp?itemid=<%=rs.itemid%> "> <%=rs.item%></a>
<%loop%>
//searchresult.asp中这样接:
<%
dim itemid
itemid=request.querystring("flag")
//此处再用itemid的值写SQL,什么任务不都完成了嘛。
%>
不过我劝你还是别学了,国内至少有1000万人会写,而且其中999万在失业。