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了,请高手指点!

请给出详细点的页面程序(最好有注释!!!!)
谢谢!
展开
 我来答
踩蘑菇的笨小孩
2010-07-27 · TA获得超过102个赞
知道小有建树答主
回答量:206
采纳率:0%
帮助的人:0
展开全部
可以的。

<%
Dim mark : mark = Request.Querystring("mark")
If Mark = "post" Then
''这里处理提交
End If
%>
<html>
<body>
<form name="myform" id="myform" action="?mark=post" method="post" >

</form>
</body>
</html>
百度网友34ca7be
2010-07-27
知道答主
回答量:31
采纳率:100%
帮助的人:8.5万
展开全部
楼上正解,当然也可以用过程。
<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 %>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
dongle313
2010-07-27 · TA获得超过785个赞
知道小有建树答主
回答量:228
采纳率:0%
帮助的人:119万
展开全部
可以的 直接写在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>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
青年拉登
2010-07-27 · TA获得超过136个赞
知道小有建树答主
回答量:417
采纳率:0%
帮助的人:322万
展开全部
提交给当前页面就可以了,程序里做个判断。如果想用Ajax也是可以的。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
uchuangyi
2010-07-27 · TA获得超过164个赞
知道答主
回答量:57
采纳率:50%
帮助的人:32.4万
展开全部
<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>

这样写也是可以嘀,嘿嘿!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式