.net framework 1.1 or 2?

S

Sam

I developing an application using ASP.Net 1.1 and please find my inquiries:

- Any different between .net framework 1.1 and 2.0?
- Any impact if I running .net framework 2 on ASP.Net 1.1
- Which one is much reliable .net framework 1.1or 2.0?

Please advise.
 
L

Lau Lei Cheong

Sam said:
I developing an application using ASP.Net 1.1 and please find my inquiries:

- Any different between .net framework 1.1 and 2.0?
Sure. 4 more deployment model range from "compile everything before
deployment" to "compile everything on runtime" has been introduced. A
persistent object named "profile" can be used to store variables that will
persist even if you close the IE then reopen it.

There is also a number of other improvements.
- Any impact if I running .net framework 2 on ASP.Net 1.1
Both version of .NET framework can coexist on the same server, so it doesn't
make sanse to run 2.0 applcations on 1.1.
- Which one is much reliable .net framework 1.1or 2.0?
As long as .NET framework 1.1 can do all jobs you require it to, it will do.
The same goes to 2.0. So I'll say both version are the same.

However, the official development environment for .NET framework 2.0 will
not be avaliable until the release of VS.NET 2005. So I'll say if you plan
to deploy your work shortly, it may be better to stick with 1.1. While 2.0
do offer a wider range of built-in functionality.
 
S

Steve C. Orr [MVP, MCSD]

There are a ton of improvements between ASP.NET 1.1 and 2.0.
However, 2.0 won't be released until next year.
So until then 1.1 is obviously more reliable.
You can run them both on the same machine, but 2.0 is only in beta so don't
put it on an important computer because something could get hosed.
 

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

Top