请问在ASP中用下拉列表眶中的先项怎样传到数据库中?????????

请问在ASP中用下拉列表眶中的先项怎样传到数据库中?????????,第1张

string sql=“insert into [表名]([各字段名]……)values([对应的字段获取值]……)”;

如果对应的值是从下拉列表中获取的,那么写成

[下拉列表的id值].SelectedItem.Text

查询菜单所在的表Menu,根据添加时间倒序

<select

name=\"MenuName\">

<%Set

rs=conn.execute(\"Select

*

From

Menu

order

by

UpdateTime

desc\")

IF

not(rs.bof

and

rs.eof)

Then

Do

while

not

rs.eof

response.Write

\"<option

value=\"&rs(\"MenuName\")&\">\"&rs(\"MenuName\")&\"</option>\"

rs.movenext

Loop

End

IF

rs.close

set

rs=nothing%>

</select>

快给分吧

在不给份以后在百度里不会在回答你们的问题了,积极性受打击!!

<%

if Trim(request("do")) = "add" then

city = Trim(request("city"))

if city="" then

response.write("请选择城市")

response.end()

end if

sql="insert into table(city) values('"&city &"')"

conn.execute(sql)

response.write("<script>alert('添加成功')window.location.href='add.asp'</script>")

response.end()

end if

%>

<form name="form1" action="" method="post">

请选择城市:

<select name="city">

<option value="北京">北京</option>

<option value="上海">上海</option>

</select>

<input type="submit" name="submitbtn" value="提交">

<input type="hidden" name="do" value="add">

</form>

保存该文件名为:add.asp, 并引入一个conn.asp的数据连接文件

就可以测试一下了。

建表就不说了……


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/10861133.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-11
下一篇 2023-05-11

发表评论

登录后才能评论

评论列表(0条)

保存