views:

27

answers:

1

Hi All, is it possible to place an aspx page inside the update panel of another aspx page? if possible please let me know the way to do that.

Thanks Rupa

A: 

Hi Rupa, you could try out UFrame (Update Panel + IFrame), have a look at http://uframe.codeplex.com/

You can put the UFrame in your main.aspx, and specify the src property to your existing aspx page, as below:

In mainpage.aspx:

<div class="UFrame" id="UFrame1" src="ExistingPage.aspx" >
  <p>This should get replaced with content from Existingpage.aspx</p>
</div>
Gan