• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Should have explained myself better

 
Greenhorn
Posts: 9
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I should have explained my better in my original post: "How do I return to a specific spot on page. You see I'm using STRUTS and in my function -


<SCRIPT>
function refreshPage(form)
{
form.action = "/tops/editAdmin.do";
form.submit();
return false;
}
</SCRIPT>



- I'm directing the action towards the action path in my strut-config.xml file; consequently, that's why I had it posted in the struts forum.


<action path="/editAdmin"
type="com.hibbertgroup.client.tops.webApp.EditAdminAction"
name="adminForm"
scope="session"
validate="false"
input="editAdmin">
<forward name="success" path="/templates/EditAdmin.jsp"/>
</action>



I should have explained it better.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic