Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP and ASP.NET

Reply
Thread Tools

ASP and ASP.NET

 
 
Gilgamesh
Guest
Posts: n/a
 
      08-13-2004
Hi there,
We have a legacy ASP application which we would need to continue to support.
There's a need to add new functionality to the application, which I intend
to implement it in ASP.NET if possible. The asp application is hosted in a
secured environment with users connecting to the app using SSL. I was
wondering if there's a way to do this without creating a separate asp.net
web application.

I appreciate any comment.
--
Thanks,
Gilgamesh


 
Reply With Quote
 
 
 
 
Kevin Spencer
Guest
Posts: n/a
 
      08-13-2004
Both ASP and ASP.Net pages can be hosted together. They are handled by
different ISAPIs.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"Gilgamesh" <> wrote in message
news:...
> Hi there,
> We have a legacy ASP application which we would need to continue to

support.
> There's a need to add new functionality to the application, which I intend
> to implement it in ASP.NET if possible. The asp application is hosted in a
> secured environment with users connecting to the app using SSL. I was
> wondering if there's a way to do this without creating a separate asp.net
> web application.
>
> I appreciate any comment.
> --
> Thanks,
> Gilgamesh
>
>



 
Reply With Quote
 
 
 
 
Cowboy \(Gregory A. Beamer\) [MVP]
Guest
Posts: n/a
 
      08-13-2004
You can start building the ASP.NET functionality in the same application and
go back and forth. NOTE that session state is not the same, so you have to
migrate over any session variables when you go back and forth. MSDN online
has an article on session state sharing between the two.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

************************************************
Think Outside the Box!
************************************************
"Gilgamesh" <> wrote in message
news:...
> Hi there,
> We have a legacy ASP application which we would need to continue to

support.
> There's a need to add new functionality to the application, which I intend
> to implement it in ASP.NET if possible. The asp application is hosted in a
> secured environment with users connecting to the app using SSL. I was
> wondering if there's a way to do this without creating a separate asp.net
> web application.
>
> I appreciate any comment.
> --
> Thanks,
> Gilgamesh
>
>



 
Reply With Quote
 
Steve C. Orr [MVP, MCSD]
Guest
Posts: n/a
 
      08-13-2004
The main problem is that there is no single great way to share session state
between ASP and ASP.NET.
But that doesn't mean you don't have options.

Here are some common ways:
* Store the data in a common database
* Pass data from page to page on the QueryString
* Store the data in cookies
* Use a 3rd party session sharing component
(Here's one:
http://www.consonica.com/solutions/d...tch/index.html)
* Use COM Interop to provide an object that both sides can access that
handles the data.
Here's an example of the latter:
http://msdn.microsoft.com/library/de...rtToASPNET.asp

Eventually you'll likely want to convert your old ASP stuff to ASP.NET.
Here's more info on good ways to do that:
http://www.able-consulting.com/dotne...iles/frame.htm
http://msdn.microsoft.com/library/de...rtToASPNET.asp

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
Hire top-notch developers at http://www.able-consulting.com


"Gilgamesh" <> wrote in message
news:...
> Hi there,
> We have a legacy ASP application which we would need to continue to
> support.
> There's a need to add new functionality to the application, which I intend
> to implement it in ASP.NET if possible. The asp application is hosted in a
> secured environment with users connecting to the app using SSL. I was
> wondering if there's a way to do this without creating a separate asp.net
> web application.
>
> I appreciate any comment.
> --
> Thanks,
> Gilgamesh
>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
global filter to redirect asp (old asp!) pages on asp.net site Daves ASP .Net 2 05-31-2006 08:33 AM
2.0: asp:Menu, asp:XmlDataSource, asp:PlaceHolder R.A.M. ASP .Net 1 03-29-2006 07:55 AM
[ASP.NET1.1]Should I kill the ASP.NET worker process after recompilingmy ASP.NET webservice? Andrea Raimondi ASP .Net 1 02-06-2006 08:10 AM
ASP.Net cookie -> ASP -> ASP.Net Ben ASP .Net 3 05-28-2004 03:35 PM
LOOP through an ASP form's pages (not ASP.NET - ASP classic) David A. Beck ASP General 10 04-13-2004 05:38 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57