使用 JSP 获取文本框值
我是 JSP 的新手,我需要通过单击按钮从文本框中获取值。我正在使用 Java Netbeans 和服务器 apache tomcat。它是这样工作的...
文本框包含在 HTML 标记 中,一旦用户输入一个值,他单击该按钮,然后将出现一个消息框,其中包含他输入的值。
我对 JSP 不熟悉,这让我很困难。
I'm new in using JSP and I need to get a value from a textbox by upon clicking a button. I am using Java Netbeans with the server apache tomcat. This is how it works...
The textbox is enclosed in an HTML tag <table>
once the user inputs a value, he clicks the button then a message box will appear with the value he entered.
I am not familiar with JSP and it gives me a hard time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要在 web.xml 中配置一个 servlet
创建一个表单并将日期发布到该 servlet
这里我概述了它的外观
您的 JSP
您的 Servlet
必须请参阅
You need to configure a servlet in web.xml
Create a form and post the date to that servlet
Here I have outlined how it should look
Your JSP
Your Servlet
Must See
我的回答和第一个答案很熟悉。
mainPage.jsp
example.jsp
我也在使用apache tomcat。
您必须按照第一个答案中所述配置您的 web.xml 。
希望有帮助。
My answer is quite familiar with the first answer.
mainPage.jsp
sample.jsp
I'm also using apache tomcat.
You have to configure your web.xml as said in the first answer.
Hope that helps.