asp传递多个值
我想这样,就是当点击某个连接,到下一个页面,要传递过去多个值让下一个页面调用,我的代码是这样的:<a href="index_do_service_user.asp?id="<%=rs("id")%>"&nd_title="<%=rs("nd_title")%>"&nd_depart="<%=rs("nd_depart")%>"&nd_name="<%=rs("nd_name")%>"&nd_tel="<%=rs("nd_tel")%>"&nd_content="<%=rs("nd_content")%>"">去解决</a>
下一个页面是这样接受的:
<%dim id,nd_depart,nd_name,nd_tel,nd_title,nd_content
id=request.querystring("id")
nd_depart=request.querystring("nd_depart")
nd_name=request.querystring("nd_name")
nd_tel=request.querystring("nd_tel")
nd_title=request.querystring("nd_title")
nd_content=request.querystring("nd_content")
不知道为什么,怎么就是接受不到这个值呢,我猜想是我的那个传递值的写法用错了,请各位大虾赐教!!!!!!