Action before loading a page

2001-06-05 Thread Jack Xu
I have a frameset of 2 frames. The first frame loads a JSP file containing a custom tag. The tag retrieves a list from my database and displays it as a drop down list. The tag then marks the first entry in the list as default and then load another file in the second frame. In stead of having a

Re: Action before loading a page

2001-06-05 Thread Peter Alfors
I don't think that you have control of when the frames are loading. The browser attempts to load both frames simultaneously. (Please correct me if I am wrong) Therefore, you would have to do something kinda funky (javascript) to instruct another frame to 'reload' after the current frame finishes.

Re: Action before loading a page

2001-06-05 Thread Ted Husted
Both JSPs and Actions are called by a HTTP request. It can be helpful to think of Actions as invisible pages that respond to a request with a visible page. Any place where you request (or load) a page, you can request an Action instead. So however you load another file in the second frame, you

Re: Action before loading a page

2001-06-05 Thread Roland Huss
Peter Alfors [EMAIL PROTECTED] writes: I don't think that you have control of when the frames are loading. The browser attempts to load both frames simultaneously. (Please correct me if I am wrong) Therefore, you would have to do something kinda funky (javascript) to instruct another frame