简体   繁体   English

如何将一个aspx页面放在另一个aspx页面的更新面板中

[英]how to place an aspx page inside update panel of another aspx page

is it possible to place an aspx page inside the update panel of another aspx page? 是否可以在另一个aspx页面的更新面板中放置aspx页面? if possible please let me know the way to do that. 如果可能的话,请让我知道该怎么做。

Thanks Rupa 谢谢鲁帕

you could try out UFrame (Update Panel + IFrame), have a look at http://uframe.codeplex.com/ 您可以尝试使用UFrame(更新面板+ IFrame),请访问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: 您可以将UFrame放入main.aspx中,并为现有的aspx页面指定src属性,如下所示:

In mainpage.aspx: 在mainpage.aspx中:

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM