asp 提交表单之后能在当前页面执行吗
我想做个添加页面:我的添加页面为1.asp,(<formname="myform"id="myform"action="2.asp"method="post">)提交表单...
我想做个添加页面:
我的添加页面为 1.asp,(<form name="myform" id="myform" action="2.asp" method="post" >)
提交表单到 2.asp,
我想要的效果是2.asp的代码能直接在1.asp里面执行吗?
就是不用到2.asp了,请高手指点!
请给出详细点的页面程序(最好有注释!!!!)
谢谢! 展开
我的添加页面为 1.asp,(<form name="myform" id="myform" action="2.asp" method="post" >)
提交表单到 2.asp,
我想要的效果是2.asp的代码能直接在1.asp里面执行吗?
就是不用到2.asp了,请高手指点!
请给出详细点的页面程序(最好有注释!!!!)
谢谢! 展开
展开全部
楼上正解,当然也可以用过程。
<html>
<body>
<%
select case request.querystring("option")
case "deal" : deal
case else : formsub
end select
%>
</body>
</html>
<%
sub formsub()
%>
<form name="myform" id="myform" action="?option=deal" method="post" >
</form>
<% end sub
sub deal() %>
此处处理表单
<% end sub %>
<html>
<body>
<%
select case request.querystring("option")
case "deal" : deal
case else : formsub
end select
%>
</body>
</html>
<%
sub formsub()
%>
<form name="myform" id="myform" action="?option=deal" method="post" >
</form>
<% end sub
sub deal() %>
此处处理表单
<% end sub %>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
可以的 直接写在1.ASP里面就行了
<html>
<body>
<%
itname=request.Form("itname")
if itname<>"" then
response.Write itname
else
response.Write "没有输入内容!"
end if
%>
<form name="form1" id="form1" action="" method="post">
<input type="text" name="itname">
<input type="submit" name="submit">
</form>
</body>
</html>
<html>
<body>
<%
itname=request.Form("itname")
if itname<>"" then
response.Write itname
else
response.Write "没有输入内容!"
end if
%>
<form name="form1" id="form1" action="" method="post">
<input type="text" name="itname">
<input type="submit" name="submit">
</form>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
提交给当前页面就可以了,程序里做个判断。如果想用Ajax也是可以的。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<html>
<body>
<%
if request("submit")<>empty then
response.Write itname
else
response.Write "没有输入内容!"
end if
%>
<form name="form1" id="form1" action="" method="post">
<input type="text" name="itname">
<input type="submit" name="submit">
</form>
</body>
</html>
这样写也是可以嘀,嘿嘿!
<body>
<%
if request("submit")<>empty then
response.Write itname
else
response.Write "没有输入内容!"
end if
%>
<form name="form1" id="form1" action="" method="post">
<input type="text" name="itname">
<input type="submit" name="submit">
</form>
</body>
</html>
这样写也是可以嘀,嘿嘿!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |