如何在jsp中从html文本区域行字符串java给出
这样的html代码页就是jsp吗?
<form action="">
<div align="center"><textarea name="" cols="50" rows="4">welcome to my program</textarea></div>
</form>
如果在此文本区域行中写入。 servlet 中的对象 String 中的行如何转换?
我就知道是这样的
<form action="perform_action.jsp" method="post">
<input type="submit" value="OK">
</form>
Perform_action.jsp:
if ( <all_ок> ) {
Sample.task();
}
可以在一页jsp上做吗? 抱歉英语不好。
Is such html code page jsp?
<form action="">
<div align="center"><textarea name="" cols="50" rows="4">welcome to my program</textarea></div>
</form>
if write in this textarea line. How the line translate in object String in servlet?
I'm know such the way.
<form action="perform_action.jsp" method="post">
<input type="submit" value="OK">
</form>
perform_action.jsp:
if ( <all_ок> ) {
Sample.task();
}
may way do on the one page jsp?
sorry for bad english.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
让表单操作指向
web.xml
中
中定义的 servlet URL,并为输入元素指定名称。提交的内容将在 servlet 的
doPost()
方法中作为请求参数提供,其中您使用输入元素的名称作为参数名称。另请参阅:
Let the form action point to the servlet URL as definied in
<url-pattern>
inweb.xml
and give the input elements a name.The submitted content will be available in
doPost()
method of servlet as request parameter where you use the name of the input element as parameter name.See also: