posted 21 years ago
Hello,
I am using frames in my web app not b/c I want to, but b/c I have to. I am using the <html:link> tag to with a page attribute to go to my action class. I am able to do this successfully from one frameset to another one using the following link in the menu frame of frameset1:
<html:link page="<%="/view.do?action=View%20Types"%>" target="_top">
Machines
</html:link>
This passes the user onto a new frameset: frameset2. I have another link that is almost identical to the previous one in the menu frame of frameset2
<html:link page="<%="/view.do?action=View%20Products"%>" target="body_content">
Products
</html:link>
This link does not work, it gives me the "Request[/view] does not contain handler parameter named action" error. This is very frustrating. I know that the ViewAction has the hanler for the parameter named action b/c I am able to type the link into the browser address bar and everything behaves correctly.
Any ideas as to why this is happening?
thanks,
c.