asp Request 问题

2025-01-21 09:38:03
推荐回答(1个)
回答1:

第一、
"select * from shop_news where newsid="&request("id"),conn,1,1
这种格式你想换成固定的是不行的,除非你直接用
"select * from shop_news where newsid=58",conn,1,1

第二、你想ID+1,我想你是想实现下一篇什么的吧
但这样是不符合实际的,因为ID一般都是自动编号,一但删除,那个ID号就没了,也永远不能填上这个ID号,所以这样是不行的,除非你这样用:
"select top 1 * from shop_news where newsid>"&request("id")&" order by newsid asc",conn,1,1