Page within a Page
-
Hi Guys, Quick question... Is it possible to display a page from one location in an ASP.NET page? I have an intranet application in ASP.NET 2.0 that I want to display some fileshare pages which are on our existing sharepoint portal within my site so I can keep all my menus etc for navigation. Thank you, :-D
oooo, the Jedi's will feel this one....
-
Hi Guys, Quick question... Is it possible to display a page from one location in an ASP.NET page? I have an intranet application in ASP.NET 2.0 that I want to display some fileshare pages which are on our existing sharepoint portal within my site so I can keep all my menus etc for navigation. Thank you, :-D
oooo, the Jedi's will feel this one....
Have you tried iframe? Just try iframe.i guess it'll help you.
Arun Jacob http://codepronet.blogspot.com/
-
Have you tried iframe? Just try iframe.i guess it'll help you.
Arun Jacob http://codepronet.blogspot.com/
Thats perfect, thanks... I'm a newb, so I've never heard of that one. Works a treat. Thank you very much. :-D
oooo, the Jedi's will feel this one....
-
Thats perfect, thanks... I'm a newb, so I've never heard of that one. Works a treat. Thank you very much. :-D
oooo, the Jedi's will feel this one....
Glad to see it worked.:thumbsup:
Arun Jacob http://codepronet.blogspot.com/
-
Glad to see it worked.:thumbsup:
Arun Jacob http://codepronet.blogspot.com/
It's having some added benifits too... I've been having loads of trouble with authentication with the ReportViewer control looking at SSRS reports. Now I'm just redirecting that traffic into this iFrame jobby, and hey presto!!! The authentication is working perfectly, and it appears to be slightly quicker... :-D :-D :-D Me thinks I need to look at more HTML stuff rather than concentrating on the ASP controls...
oooo, the Jedi's will feel this one....
-
Hi Guys, Quick question... Is it possible to display a page from one location in an ASP.NET page? I have an intranet application in ASP.NET 2.0 that I want to display some fileshare pages which are on our existing sharepoint portal within my site so I can keep all my menus etc for navigation. Thank you, :-D
oooo, the Jedi's will feel this one....
In addition to IFrame, look at inc. These are text files that may or may not include HTML mark up and inserted into the page using the old
#insert
directive. Various manuals at my company are available this way. Each section exists as a separate formatted text file with an.inc
extension. The user can retrieve single sections and the text is embedded in the page. The user can also retrieve the entire manual, which includes every section. With this technique, there is a single source for the text (which eliminates discrepancies where one page was changed an another was not), it can be reused in a variety of situations, and the use of simple mark up rather than full HTML means that managing the texts can be done by the doc writers and not IT.