Hi am design on page with strut action class with method. when I called method its done properly and got success result. But I have problem when I refresh what success page its again submit the previous page values in database. how to avoid this one.
my first jsp page form
<form name="manualorder" action="manual_order" onsubmit="return validation();">
struts.xml
<action name="purchaseorder" class="materialTypeMasterAction" method="createorder" >
<result name="success">/pages/procurement/PurchaseOrder.jsp</result>
</action>
<action name="manual_order" class="materialTypeMasterAction" method="enquiry_process">
<result name="success">/pages/procurement/success.jsp</result>
</action>
when i refresh this success page its again call enquiry_process method
and submit previous value which i created in createorder method in action first one.