parveiz khan

Greenhorn
+ Follow
since Nov 22, 2009
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 parveiz khan

yes. the jsp is submitted to a servlet.

i did not understand completely.

my assumption is if i set some properties in a bean (from jsp) those values i can retrieve in the servlet from that bean. but how? i dont know how to write the code.
or is my assumption is wrong?
14 years ago
JSP
<jsp:useBean id="bean" class="com.hrms.servlet.UserBean" scope="session" >
<jsp:setProperty name="bean" property="username" param="textfield1" />
<jsp:setProperty name="bean" property="password" param="textfield2" />
</jsp:useBean>

what should i write in servlet to retrieve those values?
14 years ago
JSP