PC Review


Reply
Thread Tools Rate Thread

ASP to ASP.Net conversion

 
 
tom c
Guest
Posts: n/a
 
      22nd Aug 2006
I have a client with an ASP site who wants to add some new features and
eventually convert to ASP.Net. I have two related questions:

1. Does microsoft or anyone else have any software that automates the
process of converting ASP to ASP.Net?

2. Can I run new ASP.Net pages on a site and have them interact with
old ASP pages?

 
Reply With Quote
 
 
 
 
Cowboy \(Gregory A. Beamer\)
Guest
Posts: n/a
 
      23rd Aug 2006
INLINE

"tom c" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
>I have a client with an ASP site who wants to add some new features and
> eventually convert to ASP.Net. I have two related questions:
>
> 1. Does microsoft or anyone else have any software that automates the
> process of converting ASP to ASP.Net?


None that I know of. The models are so different that it would be difficult
and expensive to produce a product good enough for the masses.

> 2. Can I run new ASP.Net pages on a site and have them interact with
> old ASP pages?


Yes and no. You can share session, per this article:

http://msdn.microsoft.com/library/de...rttoaspnet.asp

Understand, however, that there are caveats. This article (above) will
illustrate how to keep a user under one session id, which is a major hurdle
to having a user on a mixed app. It will not, however, let you share all of
the session cookie information. Anything you store in session in ASP will
have to be "re-pulled" for ASP.NET. In other words, you cannot do this:

ASP
-----
Session("SomeValue") = myVariable

ASP.NET
----------
int myVariable = Session["SomeValue"];

A solution I have employed in the past is to set the session vars into a
temporary data storage and then pull it back out on the ASP.NET side, but
only as needed (no reason to clutter up two session objects).


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

*************************************************
Think Outside the Box!
*************************************************


 
Reply With Quote
Reply

Thread Tools
Rate This Thread
Rate This Thread:

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
Conversion from Access 97 to 2003 & get a "Conversion Errors" tabl eidinger2000 Microsoft Access 0 4th Feb 2010 04:19 PM
Conversion errors where no conversion needed jbeckh2@gmail.com Microsoft Dot NET Framework 0 12th Jan 2007 07:24 PM
VB Conversion Keywords And .NET Conversion Routines rawCoder Microsoft VB .NET 43 2nd Mar 2005 02:56 PM
VB Conversion Keywords And .NET Conversion Routines rawCoder Microsoft VB .NET 2 28th Feb 2005 06:24 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 11:15 AM.