Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ASP inside ASP.Net

Status
Not open for further replies.

GabeC

Programmer
Apr 17, 2001
245
0
0
US
I have created a web form in ASP.Net using C#. This site needs to use the top menu of another web site on the server but this web site is written in Classic ASP using include files.

Is there anyway I can use these same include files, in .asp files, with my asp.net site or do I need to re-write the files?



Thanks,

Gabe
 
You can still use include files like you would in ASP, however, it's not recommended. Ideally, you should create a user control out of the existing page and add it to your aspx page.

Another alternatives would be to use an iframe to display the other page, however with this method, if it was a menu you may have to make adjustments to the original page.


____________________________________________________________
Mark,
[URL unfurl="true"]http://aspnetlibrary.com[/url]

Need help finding an answer? Try the Search Facility or read FAQ222-2244.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top