Ok, here is the problem. When I load up my web app the page loads fine. When I try to advance to another web page in my web app all I get is a blank screen. For every page I have a form.java and an action.java file so I can move through the web app. Here is part of my struts-config file that handles the actions.

<action path="/Menu"
                type="actions.MenuAction"
                name="menuForm"
                scope="request">
          <forward name="enterInfo"
                   path="/info.vm" />
          <forward name="default"
                   path="/results.vm" />
          <forward name="sort"
                   path="/sort.vm" />
</action>

In the form.java files I have getters and setters for the information I pass through the address bar. In the action.java files I have method calls to my logic for the program as well as forwards for the next page I wannt to go to.

If anyone can help me out that would be great. If more information is needed let me know.

-Paul

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to