Working with Frames in ASP .Net

  • Thread starter Thread starter yogi
  • Start date Start date
Y

yogi

hey
Can someone tell me how to put one page in frame from
event in another frame.
There is a frameset on the page with 2 frames (top
bottom) I have a web menu in top frame and when i click
on that menu some aspx page should be displayed in bottom
frame.
Please help me.
regards
yogi
 
Use javascript like

var MyValue =
parent.frames.item("toprightframe").document.all.MyTxtBox.value

Here i am accessing textbox value in another frame.

Similiarly you could inject code thru aspx or otherwise to have things
happen in the other frame.
 
Back
Top