Click here to Skip to main content
15,886,782 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
actually, i'm using updatepanel at my asp.net page because i need the partial refreshing at my page.
my page including 3 parts. at the first it just shows the top menu, once user clicks on any of the top menu it will shows the left sub menu and by clicking on any of the sub menu it will shows the content of the sub menu, which is including table with add, edit, delete and insert button. for the table i have used the listview.

Now i want to show one external page at the 3rd panel, which means when the user click on the sub menu the 3rd panel load the another page. for example my page name is default.aspx and once the user click on the sub menu at the default.aspx page it shows the Product.aspx page at the 3rd panel. i don't want to use the iframe and i have gone through uframe at the http://uframe.codeplex.com/ and UFrame: Goodness of UpdatePanel and IFRAME Combined but i couldn't use the uframe at my page.
Could you please guide me how to use uframe at my page or any other way to load the other page at the 3rd panel of my default.aspx.
appreciate your consideration.
Posted
Updated 1-Dec-11 14:57pm
v2
Comments
Sergey Alexandrovich Kryukov 1-Dec-11 20:53pm    
What is "uframe"?
--SA
Far sh 1-Dec-11 21:20pm    
uframe is combination of updatepanel and iframe, you can refer to the links which i have mentioned at my question to get to know it. if you have another solution to this problem i look forwards to hearing...
[no name] 1-Dec-11 20:57pm    
EDIT: added "anchor" tag

1 solution

i have solved this problem using User Control method.
now i have put content of the page inside uc1 and used the below code to call the page at the update panel:

<uc1:WebUserControl ID="WebUserControl1"  runat="server" Visible="false" />


once the user click on the related button i just change the Visible option to True.
i hope it would be helpful.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900