S Kalai

Greenhorn
+ Follow
since Jun 26, 2007
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 S Kalai

Hi,
In jsp the resultant values are display from the bean.
<logic:iterate id="customer" name="custList">
<td> <bean:write name="customer" property="customerId" /></td>
<td> <html:link action="editCustomer.do?do=editCustomer"
paramName="customer" paramProperty="customerId"
paramId="customerId">
<bean:write name="customer" property="customerName" />
</html:link> </td>
</logic: iterate>
In that resultant page the customerId and names are displayed.While cilcking the customername the customer details are edited. In that time in webbrowser url shows with Id.
http://localhost:8080/CRM_WebApp/editCustomer.do?do=editCustomer&customerId=5
How can i set the variables invisible in url?

Thanks in Advance.
16 years ago
Hi,
In jsp the resultant values are display from the bean.
<logic:iterate id="customer" name="custList">
<td> <bean:write name="customer" property="customerId" /></td>
<td> <html:link action="editCustomer.do?do=editCustomer"
paramName="customer" paramProperty="customerId"
paramId="customerId">
<bean:write name="customer" property="customerName" />
</html:link></td>
</logic: iterate>

In that resultant page the customerId and names are displayed.While cilcking the customername the customer details are edited. In that time in webbrowser url shows with Id.
http://localhost:8080/CRM_WebApp/editCustomer.do?do=editCustomer&customerId=5
How can i set the variables invisible in url?

Thanks in Advance.
16 years ago