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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top