Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

analyse formular data in servlet

Status
Not open for further replies.

henryhandle

Programmer
Feb 19, 2005
56
DE
i have to servlets . in servletA
i have a form and action and submit button
(<form action=servletB method=POST>
<input type=submit Value="Submit")
I send with submit data to the secound servlet, servletB
and this one get data and analyse it.
Now i will instead of to send this data to servletB,
get the data in servletA and analyse it
how could i get it in servletA?
thanks
 
Change :
<form action=servletB method=POST>

to :

<form action="servletA" method="post">

--------------------------------------------------
Free Database Connection Pooling Software
 
i tried this, what you said before i wrote
the message, but it
was probably other bug, which confused me!
it works as you said!
thanke you
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top