【IT专家】如何在页面上显示成功消息。从servlet重定向到jsp
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
本文由我司收集整编,推荐下载,如有疑问,请与我司联系
如何在页面上显示成功消息。从servlet 重定向到jsp 如何在页面上显示成功消息。从servlet 重定向到jsp[英]How to show success message on page.redirect from servlet to jsp I have a html form in jsp page which on
submit is going to servlet ..After executing the functions in servlet i am again redirecting it to the same jsp page from which it has been invoked with a success message to display
now on the same jsp page but i don’t know how to do this ...
我在jsp 页面中有一个html 表单,提交时它将被发送到servlet。在执行servlet 中
的函数之后,我再次将它重定向到与成功消息一起调用的相同jsp 页面,现在将显
示在相同的jsp 页面上,但我不知道如何做到这一点……
Here is my jsp form code..
这是我的jsp 表单代码。
form action=“CallTimer”method=“GET”label Set Date: /label input type=“text”name=“date”id=“date”nbsp; nbsp; nbsp; nbsp; nbsp; nbsp; label Set Hour /label input type=“text”name=“hour”id=“hour”nbsp; nbsp; nbsp; nbsp; nbsp; nbsp; label Set Minute: /label input type=“text”name=“minute”id=“minute”nbsp; nbsp; nbsp; nbsp; nbsp; nbsp; input type=“Submit”name=“Submit”value=“Submit”id=“Submit”br/ br/ label Set File-Path: /label input type=“text”name=“filepath”id=“filepath”/form And here is my servlet redirect code.
这是我的servlet 重定向代码。
response.sendRedirect(“Automail.jsp”); 2
As per your requirement I would suggest you to go for ajax.I gave a simple example how to pass data to servlet.Click here to know more about jquery ajax
根据您的要求,我建议您选择ajax。我给出了一个简单的例子,如何将数据传递
给servlet。单击此处了解有关jquery ajax 的更多信息
$.ajax( type: “get”, url: “CallTimer”, //Your full URL goes here data: { name: name1, date: date1,hour:hour1,filepath:filepath1,minute:minute1}, success: function(data,