设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 82|回复: 1
打印 上一主题 下一主题

[求助]关于下拉列表传值的问题

[复制链接]
跳转到指定楼层
1#
发表于 2010-1-8 07:55:20 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
各位好,我刚学ASP,很多地方不懂,来请教一下

<form id="form1" name="form1" method="post" action="2.asp">
产品编号:
<select name="id" size="1">
<option value="1" selected>1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
<input type="submit" name="Submit" value="提交">
</form>

以上是表单页面
下面是处理页面

<html>
<body>
<% ID=request.form("id") /%>
<%
dim con,DBPath
set con=server.CreateObject("ADODB.Connection")
DBPath=server.MapPath("data.mdb")
con.open "driver={Microsoft Access Driver(*.mdb)};dbq="&DBPath
set rs=server.CreateObject("ADODB.Recordset")
sql="select * from data"
sql=sql & "where 产品编号 like '%"& ID &"%'"
con.execute sql
rs.open sql,con,1,3
%>
<% if not rs.eof and not rs.bof then %>
<table width="861" height="71" border="1">
<tr>
<th width="64" height="35" scope="col">产品编号</th>
<th width="61" scope="col">产品名称</th>
</tr>
<tr>
<td height="28">&nbsp;<%= rs("id") %></td>
<td>&nbsp;<%= rs("name") %></td>
</tr>

每次浏览总是出现错误

请问我错在哪里,应该怎么改?谢谢!



附件: 只有本站会员才能下载或查看附件,请您 登录 或 注册
您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-19 10:24 , Processed in 0.088390 second(s), 9 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表