can it possible to validate form field before execution of a
servlet service method if yes how??
Answers were Sorted based on User's Feedback
Yes,
If it client side validation do with the javascript
if it is serverside validation we can use Filters and do
the validations there example login authenticated or not
Is This Answer Correct ? | 8 Yes | 1 No |
Answer / suresh
We can do it, There are two validation is available
1. Form validation
2. Server side validation
1. Form Validation - This validation is perform client side,
java script used to achieve these form validation
2. Server side Validation - This type we can use predefined
server side validation method used to achieve these validate.
Note:- In perform wise we compare Form validation is better
than server side validation. it's easy to progress.
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / geetha
yes, it is possible. write a javascript method to validate
input fields and call this method based on event of your
requirement.
Is This Answer Correct ? | 5 Yes | 1 No |
Answer / alluri.nagaraju
By using Filters u can also validating the form feilds
Is This Answer Correct ? | 4 Yes | 1 No |
Answer / m saravanakumar
If you want to intercept a request before servicing you
should use Filter concept in servlet which will help in
lots of ways. like the following...
1) Using the Filter we can logs the IPAddress of client
machine in log file.
2) can do the form validation like trim() functions.
Is This Answer Correct ? | 3 Yes | 0 No |
When servlet is loaded?
What is the procedure for initializing a servlet?
What compiler do not do if we create our own constructor?
Why setMaxAge() and getMaxAge() methods are used in Cookies?
hi actully i hav form columns with origin and destination names .as like as i need to create one more column with name amount. my requirement is when i select origin and destination columns automatically i need to get amount from database.how can i. please tel me with relative code
How to find whether a parameter exists in the request object?
How can the session in servlet can be destroyed?
Is that servlet is pure java object or not?
How multiple simultaneous requests can be handled by servlets?
What is ServletContext() and what is its use?
9 Answers Prime Technology, TCS,
What are the different session tracking techniques?
Write a command to get actual path of a servlet to the server?