Iframe in aspx page

  • Thread starter Thread starter Lubo¹ ©lapák
  • Start date Start date
L

Lubo¹ ©lapák

Hi,
Can I, after click on button, from Iframe in aspx page refresh this whole
aspx page?

Thanks Lubos.
 
ASPX is really intended to be "I manage everything on this page" - and when
you bring in an IFrame - that's an entirely different page with entirely
different context.

Although you could technically do this (with something like
parent.window.location.reload() I think?) - you should look at other
options.

If you just want a scrollable window - do a search for "scrollable div tag"
on google or the newgroups, it will look the same as an IFrame - but all the
content will be in one real/physical page. HTH
 
Back
Top