Shrivastava Amit

Greenhorn
+ Follow
since Jan 31, 2008
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Shrivastava Amit

String data type is only allowed to be passed to included JSP.

You need to pass name variable value to included JSP instead of actual object like


In printPeople.jsp

12 years ago
JSP
If you are allowed to use javascript library then pick one of the available libraries (jquery, protoype etc). I personally prefer jquery as it has great api. You can find many example for using jquery ajax with java. Have a look at Jquery with Java web app
12 years ago
JSP
Try with below code :



12 years ago
JSP
Please explain further what actually you are trying to achieve ?
12 years ago
JSP
You need to import all classes which you are using in your jsp and if these classes don't belong to java.lang package.
12 years ago
JSP
What kind of validation you want to perform using JavaScript ?
In some scenarios where you want to alert user about data validation without submitting form, then you can use "false" as third parameter. Then you will receive reponse from server and you can display it to user.