kishor chandra

Greenhorn
+ Follow
since Aug 04, 2005
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 kishor chandra

how to get (retrieve a hashtable to scroll by knowing only its name.
for example:
suppose i have a has table named as "romote", can you let me know how to get thid without knowing its key/value.
17 years ago
hi,
how many beans you are using for this applications?

as you have mentioned id="1" and id="2". are these two beans?
just explain what you want to do.

if these are beans then use
jsp:usebean with getProperty(); with id.
...........
17 years ago
JSP
you can not have any static fields or method in jsp.
i think you should go throu JSP spec.
when you code any java programm you do it inside scriplets which automatically changed into service method of converted servlet.
all java methods or variable has the same scope in jsp page . so there is no need to make them static.
17 years ago
JSP
hi sourabha,
i think you are not fully aware of JSP.
it is strictly mentioned that you must use out implicit object a s in JSP SPEC.
SO hope you would get it .
thanx
17 years ago
JSP
either u have to implement SingleThreadModel interface or u have to make a method Synchronise which is to be invoked by multiple users.
this is upto ur application , wheter it is single user or multiuser where multiple users r supposed to acces it .
18 years ago