a trigger to update frames?

  • Thread starter Thread starter Rudi Ahlers
  • Start date Start date
R

Rudi Ahlers

Can this be done?

The site has a few frames, some on top, some on the side, and the middle
one. I want to be able to tell the one side frame containing the menu, to
change the menu contents when a user logs in, and also the change the top
banner (in another frame) to something targeted at this user

--

Kind Regards
Rudi Ahlers
+27 (82) 926 1689

For as he thinks in his heart, so he is. ... (Proverbs 23:7)
 
If u r using frames, and u have left [ane and top pane as different ASP.NET
pages, you can render the content of these pages dynamically on the basis of
identity of logged on user. If u r facing any problem in it, please
elaborate the situation little more.
Abhijeet Dev
 
Hi Rudi,

you'll need to do some fancy Javascripting for this to work. I think if
you are using sessions in php then it should only be a matter of doing some
targeted refresh on the frames.
 
You can use
parent.frames('top').document.getElementById('banner').src=<ur value>;

you can register it as a startup script in page_Load eventhandler and you
can also get the banner location from database and assign it right from
there.

Abhijeet Dev

PS: I have received your mail on my personal id, will reply to the it in
more detail on monday (tomorrow).
 
Thanx, that would be great, since I don't really know JAVA / JAVAScript

--

Kind Regards
Rudi Ahlers
+27 (82) 926 1689

For as he thinks in his heart, so he is. ... (Proverbs 23:7)
You can use
parent.frames('top').document.getElementById('banner').src=<ur value>;

you can register it as a startup script in page_Load eventhandler and you
can also get the banner location from database and assign it right from
there.

Abhijeet Dev

PS: I have received your mail on my personal id, will reply to the it in
more detail on monday (tomorrow).
 
Back
Top