asp vbscript中怎么根据情况跳转不同界面
一组单选按钮,只有一个正确的值能跳转到成功界面,其他跳转失败界面。总而言之就是怎么判断值然后实现不同跳转还有我是用Dreamweaver做的第一次问问题,拜托大家帮帮忙,...
一组单选按钮,只有一个正确的值能跳转到成功界面,其他跳转失败界面。
总而言之就是怎么判断值然后实现不同跳转
还有我是用Dreamweaver做的
第一次问问题,拜托大家帮帮忙,我在线等~~谢谢了
谢谢你这么及时帮助我
那怎么得到单选按钮组的值那?
两个按钮:
<input name="q" type="radio" value="1" />
<input type="radio" name="q" value="2" />
而且这段程序需要插在哪里?
整段代码在这里
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!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>
<form id="form1" name="form1" method="post" action="">
<label>
<input name="q" type="radio" value="1" checked="checked" />
</label>
<p>
<label>
<input type="radio" name="q" value="2" />
</label>
</p>
<p>
<label>
<input type="submit" name="Submit" value="提交" />
</label>
</p>
</form>
</body>
</html>
(完完全全的新手~~) 展开
总而言之就是怎么判断值然后实现不同跳转
还有我是用Dreamweaver做的
第一次问问题,拜托大家帮帮忙,我在线等~~谢谢了
谢谢你这么及时帮助我
那怎么得到单选按钮组的值那?
两个按钮:
<input name="q" type="radio" value="1" />
<input type="radio" name="q" value="2" />
而且这段程序需要插在哪里?
整段代码在这里
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!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>
<form id="form1" name="form1" method="post" action="">
<label>
<input name="q" type="radio" value="1" checked="checked" />
</label>
<p>
<label>
<input type="radio" name="q" value="2" />
</label>
</p>
<p>
<label>
<input type="submit" name="Submit" value="提交" />
</label>
</p>
</form>
</body>
</html>
(完完全全的新手~~) 展开
展开全部
把代码复制到dreamweaver里看吧,里面有注释
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<%
val_q = request("q") '获取你的FORM表单里面的 q 控件值
select case val_q '用select 比if 更容易写更多条件
case "1" '当 val_q =“1”时,
response.Redirect("1.asp") '跳转到 1.asp
case "2"
response.Redirect("2.asp")
end select
%>
<!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>
<form id="form1" name="form1" method="post" action="">
<label>
<input name="q" type="radio" value="1" checked="checked" />
</label>
1
<p>
<label>
<input type="radio" name="q" value="2" />
</label>
2</p>
<p>
<label>
<input type="submit" name="Submit" value="提交" />
</label>
</p>
</form>
</body>
</html>
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<%
val_q = request("q") '获取你的FORM表单里面的 q 控件值
select case val_q '用select 比if 更容易写更多条件
case "1" '当 val_q =“1”时,
response.Redirect("1.asp") '跳转到 1.asp
case "2"
response.Redirect("2.asp")
end select
%>
<!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>
<form id="form1" name="form1" method="post" action="">
<label>
<input name="q" type="radio" value="1" checked="checked" />
</label>
1
<p>
<label>
<input type="radio" name="q" value="2" />
</label>
2</p>
<p>
<label>
<input type="submit" name="Submit" value="提交" />
</label>
</p>
</form>
</body>
</html>
展开全部
if 就可以了
比如
if i>0 then
response.Redirect("index.asp")
else
response.Redirect("111.asp")
end if
比如
if i>0 then
response.Redirect("index.asp")
else
response.Redirect("111.asp")
end if
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
val=request.from("q")
if val=1 then
response.Redirect("1.asp")
else
response.Redirect("2.asp")
end if
if val=1 then
response.Redirect("1.asp")
else
response.Redirect("2.asp")
end if
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询