怎么把select控件里选的值写入数据库
3个回答
展开全部
我明白你的意思,看看这个使用SELECT标签提交到另一个页面获得vlaue值容易!但如何获得select标签值:
select_Indexselected.asp文件
<HTML>
<script language="javascript">//这个函数将SELECT标签值给隐藏表单SELECT_TEXT
function show()
{
form1.select_text.value=form1.test.options[form1.test.selectedIndex].text;
form1.submit();
}
</script>
<body>
<form name="form1" action="slect_request.asp">
<select name="test">
<option value="1">one</option>
<option value="2">two</option>
</select>
<input type="hidden" name="select_text">//隐藏表单
<input type=button name="su" value="click me" onClick="javascript:show();">
</form>
</body>
</HTML>
slect_request.asp文件
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
<%
response.write request("select_text")
%>
</body>
</html>
select_Indexselected.asp文件
<HTML>
<script language="javascript">//这个函数将SELECT标签值给隐藏表单SELECT_TEXT
function show()
{
form1.select_text.value=form1.test.options[form1.test.selectedIndex].text;
form1.submit();
}
</script>
<body>
<form name="form1" action="slect_request.asp">
<select name="test">
<option value="1">one</option>
<option value="2">two</option>
</select>
<input type="hidden" name="select_text">//隐藏表单
<input type=button name="su" value="click me" onClick="javascript:show();">
</form>
</body>
</HTML>
slect_request.asp文件
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
<%
response.write request("select_text")
%>
</body>
</html>
展开全部
select控件是什么意思?用select语句写入的语句应该是
insert into 表名1 select ...... from 表名2 where ....
不知你是要把select查询的结果写入另一个表中吗?如果是就可以使用这样的语句,还可以指定字段
insert into 表名1 select ...... from 表名2 where ....
不知你是要把select查询的结果写入另一个表中吗?如果是就可以使用这样的语句,还可以指定字段
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
同上 select 控件? 没听说过 是select 语句么? excute 有这么一个方法可以执行 先和数据库链接 后执行
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询