Home All Groups Group Topic Archive Search About

Including header in page

Author
28 Nov 2006 9:59 AM
Marko
How to include header which is .asp page into aspx page (asp.net 2.0)? Is it
possible?

Author
28 Nov 2006 11:57 AM
Masudur
Hi,

The easiest way is to take a ifram in the header section of the aspx
page and the set the source page of the ifram to the asp page.

Thanks
Masudur
Kaz Software Ltd
www.kaz.com.bd


The eas
Marko wrote:
Show quoteHide quote
> How to include header which is .asp page into aspx page (asp.net 2.0)? Is it
> possible?
Author
28 Nov 2006 1:21 PM
Leon Mayne
"Marko" wrote:
> How to include header which is .asp page into aspx page (asp.net 2.0)? Is it
> possible?

Does the asp page have any server side processing in it or is it just a
plain HTML document? If it's the latter then you should just be able to
include it. I'm not sure about executing an asp script inside a .NET
application though.

The best option is to migrate your asp script to asp.net:
http://www.asp.net/migrationassistants/GettingStarted_ASPtoASPNET.htm
Author
29 Nov 2006 2:48 AM
Master Programmer
Use "master pages" on asp 2.0.

Steve Ray Irwin

Marko wrote:
Show quoteHide quote
> How to include header which is .asp page into aspx page (asp.net 2.0)? Is it
> possible?
Author
29 Nov 2006 6:18 AM
Masudur
Hi,

Yes its better to use the header in master page...
In this way all the page get it immidiately

Masudur

Master Programmer wrote:
Show quoteHide quote
> Use "master pages" on asp 2.0.
>
> Steve Ray Irwin
>
> Marko wrote:
> > How to include header which is .asp page into aspx page (asp.net 2.0)? Is it
> > possible?