473,385 Members | 1,523 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

can we use VS.NET 2003 with framework 2.0?

I have VS.NET 2003, and it uses .NET framework 1.1. Can we install the
latest .NET framework 2.0, so that VS.NET 2003 can use framework 2.0,
instead of 1.1? Well maybe VS.NET 2003 doesn't support new features in
..NET framework 2.0 but not in 1.1.

Also, is should be ok to run .NET 1.1 application on .NET 2.0
framework, but not ok to run .NET 2.0 application on .NET 1.1
framework, correct?

please advise. thanks!!

Mar 11 '06 #1
7 1511

"John" <ja*****@gmail.com> wrote in message
news:11**********************@p10g2000cwp.googlegr oups.com...
I have VS.NET 2003, and it uses .NET framework 1.1. Can we install the
latest .NET framework 2.0, so that VS.NET 2003 can use framework 2.0,
instead of 1.1? Well maybe VS.NET 2003 doesn't support new features in
.NET framework 2.0 but not in 1.1.

Also, is should be ok to run .NET 1.1 application on .NET 2.0
framework, but not ok to run .NET 2.0 application on .NET 1.1
framework, correct?

please advise. thanks!!

No, you cannot use VS 2003 with .NET Framework v2.0. You can, however,
download free Express tools that will work with v2.0:

http://msdn.microsoft.com/vstudio/express/

Haven't attempted to run either V.1. on V2.0 or vice versa, as all our
machines have both Frameworks installed. I'm sure others will chime in.

--
Peter [MVP Visual Developer]
Jack of all trades, master of none.
Mar 11 '06 #2
In most cases, you can run .NET 1.1 app against .NET 2 fcl.
The reverse (running .NET 2 against .NET 1.1) is not supported.
- Mitch

"pvdg42" <pv****@newsgroups.nospam> wrote in message news:O9**************@TK2MSFTNGP11.phx.gbl...

"John" <ja*****@gmail.com> wrote in message news:11**********************@p10g2000cwp.googlegr oups.com...
I have VS.NET 2003, and it uses .NET framework 1.1. Can we install the
latest .NET framework 2.0, so that VS.NET 2003 can use framework 2.0,
instead of 1.1? Well maybe VS.NET 2003 doesn't support new features in
.NET framework 2.0 but not in 1.1.

Also, is should be ok to run .NET 1.1 application on .NET 2.0
framework, but not ok to run .NET 2.0 application on .NET 1.1
framework, correct?

please advise. thanks!!

No, you cannot use VS 2003 with .NET Framework v2.0. You can, however, download free Express tools that will work with
v2.0:

http://msdn.microsoft.com/vstudio/express/

Haven't attempted to run either V.1. on V2.0 or vice versa, as all our machines have both Frameworks installed. I'm
sure others will chime in.

--
Peter [MVP Visual Developer]
Jack of all trades, master of none.

Mar 11 '06 #3
Do you know if you can run VS2003 against a SQL2005 database using Net 1.1?

cheers,
Mark Chimes

"Mitch Gallant" <je*******@community.nospam> wrote in message
news:OS**************@TK2MSFTNGP09.phx.gbl...
In most cases, you can run .NET 1.1 app against .NET 2 fcl.
The reverse (running .NET 2 against .NET 1.1) is not supported.
- Mitch

"pvdg42" <pv****@newsgroups.nospam> wrote in message

news:O9**************@TK2MSFTNGP11.phx.gbl...

"John" <ja*****@gmail.com> wrote in message news:11**********************@p10g2000cwp.googlegr oups.com...
I have VS.NET 2003, and it uses .NET framework 1.1. Can we install the
latest .NET framework 2.0, so that VS.NET 2003 can use framework 2.0,
instead of 1.1? Well maybe VS.NET 2003 doesn't support new features in
.NET framework 2.0 but not in 1.1.

Also, is should be ok to run .NET 1.1 application on .NET 2.0
framework, but not ok to run .NET 2.0 application on .NET 1.1
framework, correct?

please advise. thanks!!

No, you cannot use VS 2003 with .NET Framework v2.0. You can, however, download free Express tools that will work with v2.0:

http://msdn.microsoft.com/vstudio/express/

Haven't attempted to run either V.1. on V2.0 or vice versa, as all our machines have both Frameworks installed. I'm sure others will chime in.

--
Peter [MVP Visual Developer]
Jack of all trades, master of none.


Mar 12 '06 #4
Chimesy <ma*******@gmail.com> wrote:
Do you know if you can run VS2003 against a SQL2005 database using Net 1.1?


Yes, that works fine.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Mar 12 '06 #5
Hi Jon,

I have attempted to use VS2003 with SQL2005 and can successfully create
read-only data sets, but it will not allow me to create INSERT, UPDATE,
DELETE statements.

Is there something very different about the process now?

cheers,
Mark Chimes

"Jon Skeet [C# MVP]" <sk***@pobox.com> wrote in message
news:MP************************@msnews.microsoft.c om...
Chimesy <ma*******@gmail.com> wrote:
Do you know if you can run VS2003 against a SQL2005 database using Net
1.1?
Yes, that works fine.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too

Mar 12 '06 #6
Chimesy <ma*******@gmail.com> wrote:
I have attempted to use VS2003 with SQL2005 and can successfully create
read-only data sets, but it will not allow me to create INSERT, UPDATE,
DELETE statements.

Is there something very different about the process now?


I don't know whether anything works differently in the designer - but
it should be fine at execution time. Are you able to design against a
SQL Server 2000 instance?

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Mar 12 '06 #7
Jon,

Yes, designing against both MSDE and SQL2000 databases works perfectly.
It is only against SQL2005 Express (I do not yet have full SQL2005) that I
am having trouble.

cheers,
Mark

"Jon Skeet [C# MVP]" <sk***@pobox.com> wrote in message
news:MP************************@msnews.microsoft.c om...
Chimesy <ma*******@gmail.com> wrote:
I have attempted to use VS2003 with SQL2005 and can successfully create
read-only data sets, but it will not allow me to create INSERT, UPDATE,
DELETE statements.

Is there something very different about the process now?


I don't know whether anything works differently in the designer - but
it should be fine at execution time. Are you able to design against a
SQL Server 2000 instance?

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too

Mar 13 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Martin Bless | last post by:
The good news: Along with Python-2.4 comes really good news to Windows users. Yes, you now CAN build extension modules yourself using the SAME C++ compiler and linker Python is built with...
6
by: David Waz... | last post by:
Moved an app from W/2000 Asp V1.0 to W/2003, VS/2003, ASPV 1.1 Page runs a long job, uploading 2 large fixed length files (300,000 rows) into SQL database. A process is run against the data,...
8
by: Hardy Wang | last post by:
Hi: Is it possible for me to create/open web application from remote machine other than port 80? And create application directly under virtual web site instead of creating a virtual directory?...
3
by: Harry Simpson | last post by:
Windows Server 2003 is supposed to include Framework 1.1 right. I don't have it here but have reports that the web is not running. The users say that the %COMPUTERNAME%\ASPNET user doesn't exist....
9
by: Marc Miller | last post by:
Hi all, I have 2 dev. machines, the 1st is Win 2000 with .NET 7.0 and the 2nd is XP Pro with .NET 2003. My Web Server is Win 2000 Server with IIS 5.0. I can create a new project on my test...
3
by: Sam | last post by:
I wonder whether I should install .net framework 1.1 with service pack 1 into MS Windows 2003 Server? My inquiries Application using ASP.Net 1.1 - Will it run on MS Windows 2003 Server without...
1
by: gerr | last post by:
Visual studio 2003 "HTTP/1.1 500 Internal Server Error" when trying to create a new Asp.net site with Visual Studio 2003 on localServer XP Pro/IIS 5.1. Everything worked fine prior to installing...
22
by: EP | last post by:
When running my asp.net hosting service (asp.net without IIS), on server 2003 with IIS not installed, I get the following when trying to process a request. "System.DllNotFoundException: Unable to...
14
by: el_sid | last post by:
Our developers have experienced a problem with updating Web References in Visual Studio.NET 2003. Normally, when a web service class (.asmx) is created, updating the Web Reference will...
10
by: cnickl | last post by:
Hi, I have a general ASP.NET question. As far as I understand, if I install the Framework 2.0 I also get ASP.NET 2.0. However I don’t want to spent the money to buy VS 2005 right now. Can I...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.