Ask a Question related to ASP.NET General, Design and Development.
-
Leon #1
window.opener.location.href doesn't work in frame
From parent windows, I have created a popup windows that comprises two
frames.
When I have clicked a link button in one of the frames, I would like
to redirect the parent windows to somewhere.
So I did
------------------------------------------------------------------
<a href='#' onclick='window.opener.location.href
=""http://www.google.com"";'>Click here</a>
------------------------------------------------------------------
but it didn't work.
Without frame, it works. So I presume it has something to do with
frame.
Could you help me?
Thanks in advance,
Leon Guest
-
Child window property window.opener null after postback
I have an webform from which I open a child window to display a calendar. When a date is selected in the calendar window it attempts to set the... -
[PHP] referer on javascript location.href
please excuse me, there is tonnes on google :\ -
referer on javascript location.href
hi there, i have a delete button which uses a javascript location.href to switch to a delete action in the same script as the form action handles... -
Refreshing or Redirecting Opener Window
Is it possible to redirect or refresh the contents of Page1 from within Page2 where Page2 was opened by Page1? -
RePosting window.opener windows to server.
Hi , I know that this is something belongs to IE but , I think sometimes asp.net developers encounter this problem. Sometimes we need to repost... -
Boban Dragojlovic #2
Re: window.opener.location.href doesn't work in frame
Instead of script, just set the "target" attribute of the anchor to "_top"
<a href="#" target="_top">
That tells is to navigate the "top" frame.
If the parent is NOT the top frame (multiple nested frames), then set target
to the name of the frame that you want to navigate
<a href="#" target="parent_frame_name">
"Leon" <yootaeho@yahoo.com> wrote in message
news:8a817d39.0306240026.59cc46c5@posting.google.c om...> From parent windows, I have created a popup windows that comprises two
> frames.
> When I have clicked a link button in one of the frames, I would like
> to redirect the parent windows to somewhere.
> So I did
> ------------------------------------------------------------------
> <a href='#' onclick='window.opener.location.href
> =""http://www.google.com"";'>Click here</a>
> ------------------------------------------------------------------
>
> but it didn't work.
> Without frame, it works. So I presume it has something to do with
> frame.
> Could you help me?
>
> Thanks in advance,
Boban Dragojlovic Guest



Reply With Quote

