Call ASP.NET application pages from old ASP page

G

Guest

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
 
I

IPGrunt

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,057
Latest member
KetoBeezACVGummies

Latest Threads

Top