<!--#include file="connections/conn.asp"-->
<%
prono = Request("prono") ' 读取商品编号
proname = Request("proname") ' 读取商品名称
' 读取生产商
Price = Request("Price") ' 读取定价
Quantity = 1' 读取数量
subTotal = Price * Quantity ' 计算金额=定价*数量
' 从数据表中读取记录并存放在Recordset对象中
'Set objRS = Server.CreateObject("ADODB.Recordset")
addsql1="insert into dingdan(prono,proname,price,quantity,total)values('"&prono&"','"&proname&"','"&price&"','"&Quantity&"','"&subtotal&"')"&""
conn.execute(addsql1)
%>
<script language="vbscript">
alert ("您所选取的商品已成功地放入购物车!")
history.back
</script>
<%
Conn.Close
Set Conn = Nothing
%>
那要怎样把上面这段代码写正确