hi all..
i have the following line in jsp ( actually this is a for each loop
value will be different for differnt row )
Code:<td width="10%" align="center" class="tr4"> <INPUT type="image" src="images/button_Delete.gif" name="delete" value="<core:out value="${purchaseOrderLineItemList.materialId}"/>"> </td>
i am checking if it was clicked as below
i need to know how to get the value of that buttonCode:if (request.getParameter("delete.x")!= null){....}..
or how to detect that id ?
Thanx


..
Reply With Quote