Ask a Question related to ASP.NET General, Design and Development.
-
Dan M #1
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?
Dan M 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... -
Closing window and redirecting
I have page that is opened in a small window and after a user submits the form on that page I want the window to close and then refresh the page... -
DataBinding (Refreshing) a DataGrid within a Popup Window
Hello, I'm trying to set up a modal (preferably) popup window to do asimple web service query. The popup window contains somecriteria fields, a... -
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... -
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... -
Dan M #2
Re: Refreshing or Redirecting Opener Window
Thanks Steve. I must be overlooking something simple - I get the error
"object doesn't support this property or method
'window.opener.document.reload'"
I get similar results when I try to set the location of the opener or
attempt the redirect method of the opener. Why is it that, if 'opener'
returns a reference to a window object, intellisense does not display a list
of 'window' object members for the 'opener' object?
"Steve C. Orr, MCSD" <Steve@Orr.net> wrote in message
news:%23tVSvWjRDHA.1576@TK2MSFTNGP12.phx.gbl...> Some client side javascript similar to this should do the trick:
>
> window.opener.document.reload(true);
>
> --
> I hope this helps,
> Steve C. Orr, MCSD
> [url]http://Steve.Orr.net[/url]
>
>
> "Dan M" <dan.morrisssey@fhmd.org> wrote in message
> news:%234AEO3iRDHA.2252@TK2MSFTNGP12.phx.gbl...>> > Is it possible to redirect or refresh the contents of Page1 from within
> > Page2 where Page2 was opened by Page1?
> >
> >
> >
>
Dan M Guest
-
Vidar Petursson #3
Re: Refreshing or Redirecting Opener Window
Hi
window.opener.location.reload(true);
--
Best Regards
Vidar Petursson
==============================
Microsoft Internet Client & Controls MVP
==============================
"Dan M" <dan.morrisssey@fhmd.org> wrote in message
news:ePJPsmjRDHA.212@TK2MSFTNGP10.phx.gbl...list> Thanks Steve. I must be overlooking something simple - I get the error
> "object doesn't support this property or method
> 'window.opener.document.reload'"
>
> I get similar results when I try to set the location of the opener or
> attempt the redirect method of the opener. Why is it that, if 'opener'
> returns a reference to a window object, intellisense does not display awithin> of 'window' object members for the 'opener' object?
>
> "Steve C. Orr, MCSD" <Steve@Orr.net> wrote in message
> news:%23tVSvWjRDHA.1576@TK2MSFTNGP12.phx.gbl...> > Some client side javascript similar to this should do the trick:
> >
> > window.opener.document.reload(true);
> >
> > --
> > I hope this helps,
> > Steve C. Orr, MCSD
> > [url]http://Steve.Orr.net[/url]
> >
> >
> > "Dan M" <dan.morrisssey@fhmd.org> wrote in message
> > news:%234AEO3iRDHA.2252@TK2MSFTNGP12.phx.gbl...> > > Is it possible to redirect or refresh the contents of Page1 from>> >> > > Page2 where Page2 was opened by Page1?
> > >
> > >
> > >
> >
>
Vidar Petursson Guest
-
Dan M #4
Re: Refreshing or Redirecting Opener Window
That's what I needed. Thank you very much.
"Vidar Petursson" <theking@icysoft.com> wrote in message
news:eSpaStjRDHA.2852@tk2msftngp13.phx.gbl...> Hi
>
> window.opener.location.reload(true);
>
> --
> Best Regards
> Vidar Petursson
> ==============================
> Microsoft Internet Client & Controls MVP
> ==============================
> "Dan M" <dan.morrisssey@fhmd.org> wrote in message
> news:ePJPsmjRDHA.212@TK2MSFTNGP10.phx.gbl...> list> > Thanks Steve. I must be overlooking something simple - I get the error
> > "object doesn't support this property or method
> > 'window.opener.document.reload'"
> >
> > I get similar results when I try to set the location of the opener or
> > attempt the redirect method of the opener. Why is it that, if 'opener'
> > returns a reference to a window object, intellisense does not display a> within> > of 'window' object members for the 'opener' object?
> >
> > "Steve C. Orr, MCSD" <Steve@Orr.net> wrote in message
> > news:%23tVSvWjRDHA.1576@TK2MSFTNGP12.phx.gbl...> > > Some client side javascript similar to this should do the trick:
> > >
> > > window.opener.document.reload(true);
> > >
> > > --
> > > I hope this helps,
> > > Steve C. Orr, MCSD
> > > [url]http://Steve.Orr.net[/url]
> > >
> > >
> > > "Dan M" <dan.morrisssey@fhmd.org> wrote in message
> > > news:%234AEO3iRDHA.2252@TK2MSFTNGP12.phx.gbl...
> > > > Is it possible to redirect or refresh the contents of Page1 from>> >> > > > Page2 where Page2 was opened by Page1?
> > > >
> > > >
> > > >
> > >
> > >
> >
>
Dan M Guest



Reply With Quote

