using dot.net with asp classic ?
using dot.net with asp classic ?
am 04.10.2007 16:42:15 von wbsurfver
If we installed .net studio on our development server, I would like
to think it would work seamlessly with our existing classic asp code ?
I am mainly interested in what debugging features this would give me.
Please let me know as I am new to ASP and trying to figure out a large
complex code base with no documentation and I am the only developer on
the project .. If we installed .net studio, I would hope it would be
able to work with the code we have without any changes and it wouldn't
cause anything to break .
Re: using dot.net with asp classic ?
am 04.10.2007 19:18:02 von Anthony Jones
"wbsurfver@yahoo.com" wrote in message
news:1191508935.669777.176710@19g2000hsx.googlegroups.com...
>
> If we installed .net studio on our development server, I would like
> to think it would work seamlessly with our existing classic asp code ?
> I am mainly interested in what debugging features this would give me.
> Please let me know as I am new to ASP and trying to figure out a large
> complex code base with no documentation and I am the only developer on
> the project .. If we installed .net studio, I would hope it would be
> able to work with the code we have without any changes and it wouldn't
> cause anything to break .
>
Studio works fine with ASP. You do not need to change your code in order to
be able to edit and debugging with with Visual Studio. However if you are
expecting to be able to write ASP.NET and have it work seamlessly with ASP
you may be disappointed.
It will be fine as long as your ASP.NET pages do their thing and the ASP
pages continue to do theirs. Don't expect to be able to server.execute one
from another or share application/session data.
--
Anthony Jones - MVP ASP/ASP.NET
Re: using dot.net with asp classic ?
am 05.10.2007 20:11:26 von Jon Paal
Generally, Classic ASP amd ASP.net run fine side-by-side. There are some tricks available to share sessions values across the two
systems. They can certainly both use the same database.
If your old code exists in a classic ASP windows script component, that code can be shared by both ASP and ASP.net
"wbsurfver@yahoo.com" wrote in message news:1191508935.669777.176710@19g2000hsx.googlegroups.com...
>
> If we installed .net studio on our development server, I would like
> to think it would work seamlessly with our existing classic asp code ?
> I am mainly interested in what debugging features this would give me.
> Please let me know as I am new to ASP and trying to figure out a large
> complex code base with no documentation and I am the only developer on
> the project .. If we installed .net studio, I would hope it would be
> able to work with the code we have without any changes and it wouldn't
> cause anything to break .
>
Re: using dot.net with asp classic ?
am 06.10.2007 09:25:32 von PW
"wbsurfver@yahoo.com" wrote in message
news:1191508935.669777.176710@19g2000hsx.googlegroups.com...
>
> If we installed .net studio on our development server, I would like
> to think it would work seamlessly with our existing classic asp code ?
> I am mainly interested in what debugging features this would give me.
> Please let me know as I am new to ASP and trying to figure out a large
> complex code base with no documentation and I am the only developer on
> the project .. If we installed .net studio, I would hope it would be
> able to work with the code we have without any changes and it wouldn't
> cause anything to break .
>
I installed asp.net onto my server and theres been no hassles. I can still
run and maintain all my classic ASP stuff with no issues.