Re: Call ASP.NET application pages from old ASP page
From: IPGrunt (me_at_privacy.net)
Date: 01/19/05
- Next message: genc ymeri: "Re: when the session code gets called ????"
- Previous message: Jeremy S.: "Re: Lots of Bits"
- In reply to: william: "Call ASP.NET application pages from old ASP page"
- Messages sorted by: [ date ] [ thread ]
Date: 19 Jan 2005 05:06:25 GMT
"=?Utf-8?B?d2lsbGlhbQ==?=" <william@discussions.microsoft.com> confessed in
news:D739A4AD-C097-4C38-933C-0B0B03D3E4D3@microsoft.com:
> Hi All,
>
> How can I call a page of ASP.NET application from old ASP page? Is there
> anything about deployment I should be aware to make it happen?
>
> Thanks.
> william
>
You can coexist asp and asp.net code, but you better have an asp.net web app
in place before you call it.
<% Response.Redirect("ASPDOTNETPAGE.ASPX") %>
IIS through ISAPI knows how to deal with ASPX files.
Remember that ASP.NET is managed code, and the runtime is looking for the
classes (the /bin folder with the appropos DLL) associated with
ASPDOTNETPAGE.ASPX, as well as perhaps a web.config page, a global.asax page,
etc. in other words, whatever the .net app requires.
Not to mention, the .NET Framework in place on the server!
-- ipgrunt
- Next message: genc ymeri: "Re: when the session code gets called ????"
- Previous message: Jeremy S.: "Re: Lots of Bits"
- In reply to: william: "Call ASP.NET application pages from old ASP page"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|