CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Classic asp

  1. #1
    Join Date
    Aug 2001
    Location
    Landgraaf, Netherlands
    Posts
    73

    Classic asp

    Hi gurus,

    I am developing new parts of our existing web application. The original application consists of classic ASP pages and I choose to start new developments in ASP.NET. Here is my question :

    Is it possible to keep using my classic ASP pages within an ASP.NET master page using some sort of content control?? Or any other way??

    Hope someone has an idea!!

    Thanks in advance,
    Ralph

  2. #2
    Join Date
    Jul 2007
    Location
    Sweden
    Posts
    331

    Re: Classic asp

    ASP and ASP.NET are completely different languages. Their only similarity lies in their common name and some global properties.

    This means they cannot programmatically interact. However, you can use a standard HTML frameset or an <iframe> to include your ASP page into your ASP.NET page. You can even have your ASP page submit a form to your ASP.NET page or vice versa, if you make the code for reading the form fields manually. But beyond that, they're completely separate languages.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured