求asp通过网址自动填写输入框并自动提交代码 10
例如:通过输入网址http://127.0.0.1/biao.asp?leixing=a100&number=123456789&member=88888888&tiji...
例如:通过输入网址 http://127.0.0.1/biao.asp?leixing=a100&number=123456789&member=88888888&tijiao=1
()
类型__________ (会根据rul 输入a100)
号码__________ (会根据rul 输入123456789)
会员__________ (会根据rul 输入88888888)
【提交】 (会根据rul 确实是否自动提交 1=自动提交 0=不自动提交)
求 biao.asp 的代码
纠正下 类型__________ 是下拉框选择项 选择项有a100 b100 c100 三种 展开
()
类型__________ (会根据rul 输入a100)
号码__________ (会根据rul 输入123456789)
会员__________ (会根据rul 输入88888888)
【提交】 (会根据rul 确实是否自动提交 1=自动提交 0=不自动提交)
求 biao.asp 的代码
纠正下 类型__________ 是下拉框选择项 选择项有a100 b100 c100 三种 展开
3个回答
展开全部
以下代码完全实现了楼主的要求 如用到实际项目中请自行修改
<%
leixing=request("leixing")
anumber=request("number")
member=request("member")
tijiao=request("tijiao")
%>
<!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>
<script>
function sub(){
document.form1.submit();
}
</script>
</head>
<body <%if tijiao="1" then response.write "onload='setTimeout(sub,5000);'"%>>
<form action="aaa.asp" method="post" name="form1">
<table width="100%" border="0" cellspacing="1" cellpadding="1">
<tr>
<td>类型</td>
<td><select name="leixing">
<option value="a100" <%if leixing="a100" then response.write "selected"%>>a100</option>
<option value="b100" <%if leixing="b100" then response.write "selected"%>>b100</option>
<option value="c100" <%if leixing="c100" then response.write "selected"%>>c100</option>
</select></td>
</tr>
<tr>
<td>号码</td>
<td><input name="number" type="text" value="<%=anumber%>"/></td>
</tr>
<tr>
<td> </td>
<td><input name="member" type="text" value="<%=member%>"/></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
</form>
</body>
</html>
<%
leixing=request("leixing")
anumber=request("number")
member=request("member")
tijiao=request("tijiao")
%>
<!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>
<script>
function sub(){
document.form1.submit();
}
</script>
</head>
<body <%if tijiao="1" then response.write "onload='setTimeout(sub,5000);'"%>>
<form action="aaa.asp" method="post" name="form1">
<table width="100%" border="0" cellspacing="1" cellpadding="1">
<tr>
<td>类型</td>
<td><select name="leixing">
<option value="a100" <%if leixing="a100" then response.write "selected"%>>a100</option>
<option value="b100" <%if leixing="b100" then response.write "selected"%>>b100</option>
<option value="c100" <%if leixing="c100" then response.write "selected"%>>c100</option>
</select></td>
</tr>
<tr>
<td>号码</td>
<td><input name="number" type="text" value="<%=anumber%>"/></td>
</tr>
<tr>
<td> </td>
<td><input name="member" type="text" value="<%=member%>"/></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
</form>
</body>
</html>
展开全部
这么写不对,我告诉你用winform的方法提交,更快,监听提交click时间
追问
上面问题我已经解决 求 ASP URL 按钮 参数
怎么才能根据URL自动“提交” 网页上面有个提交按钮
请问代码怎么写
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2012-01-23
展开全部
楼主是URL不是rul
楼主发的东西应该是表单的GET方式传值,<form action="网址" method="GET">
楼主发的东西应该是表单的GET方式传值,<form action="网址" method="GET">
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询