| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 356 人关注过本帖
标题:还未解决的小问题!大家请进...(已解决..谢谢大家)
只看楼主 加入收藏
ih_ks
Rank: 1
等 级:新手上路
帖 子:182
专家分:0
注 册:2007-1-1
收藏
 问题点数:0 回复次数:6 
还未解决的小问题!大家请进...(已解决..谢谢大家)

--------------------------------------------第一个页面--------------------------------------------------
<!-- #include file = "conn.asp"-->
<%
Set rs = Server.CreateObject("adodb.recordset")
sql="Select * From Student"
rs.open sql,conn,1
%>
<script>
<!--
function session(id){ //这里是想把点击的时候把值放进session里面..
<% session("ID") = id %>;
}
//-->
</script>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title></title>
</head>
<body>
<%do while not rs.eof%>
<a href="b.asp" onClick="session(<%=rs("stuNo")%>)"> //b.asp是模版文件
<%=rs("stuName")%> </a>
<%
rs.movenext
Loop
%>
</body>
</html>
--------------------------------------------第二个页面------------------------------------------------
<!-- #include file = "conn.asp"-->
<%
Set rs = Server.CreateObject("adodb.recordset")
sql="Select * From Student Where stuNo ="&session("ID")
rs.open sql,conn,1
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title></title>
</head>
<body>
<% do while not rs.eof %>
<% =rs("stuName") %>
<%
rs.movenext
Loop
%>
</body>
</html>
传递不了值.....听说可以用什么GET????可以提供一下吗???

[此贴子已经被作者于2007-6-24 15:27:43编辑过]

2007-06-24 13:18
恒天
Rank: 1
等 级:新手上路
威 望:2
帖 子:165
专家分:0
注 册:2007-6-1
收藏
得分:0 

<!-- #include file = "conn.asp"-->
<%
Set rs = Server.CreateObject("adodb.recordset")
sql="Select * From Student"
rs.open sql,conn,1,1
%>

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title></title>
</head>
<body>
<%do while not rs.eof%>
<a href="b.asp?id=<%=rs("id")%>"> //b.asp是模版文件
<%=rs("stuName")%> </a>
<%
rs.movenext
Loop
%>
</body>
</html>
--------------------------------------------第二个页面------------------------------------------------
<!-- #include file = "conn.asp"-->
<% id=request.querystring("id")
Set rs = Server.CreateObject("adodb.recordset")
sql="Select * From Student Where id="&id
rs.open sql,conn,1,1
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title></title>
</head>
<body>

<% =rs("stuName") %>

</body>
</html>

2007-06-24 13:31
ih_ks
Rank: 1
等 级:新手上路
帖 子:182
专家分:0
注 册:2007-1-1
收藏
得分:0 
Microsoft JET Database Engine (0x80040E14)
语法错误 (操作符丢失) 在查询表达式 'stuNo =' 中。
/softone/b.asp, 第 5 行
2007-06-24 15:05
ih_ks
Rank: 1
等 级:新手上路
帖 子:182
专家分:0
注 册:2007-1-1
收藏
得分:0 
下面是前6行....
<!-- #include file = "conn.asp"-->
<%
Set rs = Server.CreateObject("adodb.recordset")
sql="Select * From Student Where stuNo ="&id
rs.open sql,conn,1
%>
2007-06-24 15:07
ih_ks
Rank: 1
等 级:新手上路
帖 子:182
专家分:0
注 册:2007-1-1
收藏
得分:0 
好了...谢谢你...恒天...原来是我打错了...
2007-06-24 15:11
恒天
Rank: 1
等 级:新手上路
威 望:2
帖 子:165
专家分:0
注 册:2007-6-1
收藏
得分:0 

自己要把基础知识先学好

2007-06-24 15:12
ih_ks
Rank: 1
等 级:新手上路
帖 子:182
专家分:0
注 册:2007-1-1
收藏
得分:0 
嗯...谢谢你...
2007-06-24 15:19
快速回复:还未解决的小问题!大家请进...(已解决..谢谢大家)
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.037220 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved