A friendly place for programming greenhorns!
Big Moose Saloon
Search
|
Java FAQ
|
Recent Topics
Register / Login
Win a copy of
Arduino in Action
this week in the
General Computing
forum!
A special promo:
Enter your blog post or vote on a blogger to be featured in an upcoming Journal
JavaRanch
»
Java Forums
»
Java
»
Servlets
Author
Passing texbox values from one html page to another
pratapsiva sivakumar
Greenhorn
Joined: Nov 10, 2008
Posts: 18
posted
Sep 25, 2009 02:49:09
0
I want a
servlet
to get values from one html page and pass the values to another html page.How is to be done?
Deepak Bala
Bartender
Joined: Feb 24, 2006
Posts: 6603
1
I like...
posted
Sep 25, 2009 02:51:52
0
Servlets
can talk with JSPs, not HTML. You can take a request parameter in the servlet and send the result to a
JSP
page as a request attribute. Use the <%= %> or equivalent custom tag to print the value to the user.
SCJP 6 articles
-
SCJP 5/6 mock exams
-
SCJP Mocks
-
SCJP 5 Mock exam (Word document )
-
SCJP 5 Mock exam in Java.Inquisition format
Ankit Garg
Saloon Keeper
Joined: Aug 03, 2008
Posts: 9191
2
I like...
posted
Sep 25, 2009 03:09:34
0
The
EL
solution for this would be to use ${param.parameterName}...
SCJP 6 | SCWCD 5 |
Javaranch SCJP FAQ
|
SCWCD Links
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56554
14
I like...
posted
Sep 25, 2009 08:33:55
0
Ankit Garg wrote:
The
EL
solution for this would be to use ${param.parameterName}...
Quoted for emphasis. At this stage, all new JSP code should completely omit any usage of Java scriptlets.
[
Smart Questions
] [
JSP FAQ
] [
Books by Bear
] [
Bear's FrontMan
] [
About Bear
]
I agree. Here's the link:
http://aspose.com/file-tools
subject: Passing texbox values from one html page to another
Similar Threads
Passing Multiple Values to another jsp page from a List Box
servlet to servlet communication
I ma Getting Javascript Error Permission denied.
html to html communication
alternative to request.getParameter(string) in jsp page?
All times are in JavaRanch time: GMT-6 in summer, GMT-7 in winter