求助,ASP表单获值

这是头像选择的下拉表单-------------------------------------<selectname="face"onchange="document.... 这是头像选择的下拉表单-------------------------------------
<select name="face" onchange="document.images['face'].src=document.form1.faceinput.value=options[selectedIndex].value;">
<script language="vbs" type="text/vbs">
for i = 1 to 40
document.write"<option value=Image\toux\"&i&".gif>头像"&i&"</option>"
next
</script>
</select>

----------------------------
这是图片原始显示的代码
----------------------------
<img id=face src="images/4_41.gif" width="72" height="72" />
------------------------------
这是隐藏表单的input
<input name="faceinput" type="hidden"/>
-----------------------------

---------------------------
我现在用
face = Request.Form("faceinput")
来接收下拉列表的VALUE值,可是接收不到.
-------------------------------------------
求助,谁能帮我能够让ASP顺利获取到头像的值....
展开
 我来答
koubuntei
2008-03-24 · TA获得超过130个赞
知道小有建树答主
回答量:304
采纳率:0%
帮助的人:336万
展开全部
可以呀,是不是你没写<form></form>?没指定好action?

<html>
<head></head>
<body>
<%
face = Request.Form("faceinput")
response.Write(face)
%>
<img id=face src="images/4_41.gif" width="72" height="72" />
<form name="form1" method="post" action="">
<input name="faceinput" type="hidden"/>
<select name="face" onchange="document.images['face'].src=document.form1.faceinput.value=options[selectedIndex].value;">
<script language="vbs" type="text/vbs">
for i = 1 to 40
document.write"<option value=Image\toux\"&i&".gif>头像"&i&"</option>"
next
</script>

<input type = "submit" value = "send">
</form>
</body>
</html>

其实你也可以直接取select中的值.
<html>
<head></head>
<body>
<%
face = Request.Form("face")
response.Write(face)
%>
<img id=face src="images/4_41.gif" width="72" height="72" />
<form name="form1" method="post" action="">
<select name="face" onchange="document.images['face'].src=options[selectedIndex].value;">
<script language="vbs" type="text/vbs">
for i = 1 to 40
document.write"<option value=Image\toux\"&i&".gif>头像"&i&"</option>"
next
</script>

<input type = "submit" value = "send">
</form>
</body>
</html>
starshinew
2008-03-24 · 贡献了超过135个回答
知道答主
回答量:135
采纳率:0%
帮助的人:0
展开全部
face = Request.Form("faceinput")
你看看上面那个隐藏的faceinput根本没有值
下面如何会获取到!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式