473,785 Members | 2,325 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Can i use VS .Net 2003 to develop w/ ASP.NET 2.0?

I am somewhat confused with what tool i need to develop Web applications w/
ASP.NET 2.0. Is it possible to use VS .Net 2003, or do i need to use the Beta
versions of 2005 - Visual Web Developer Express?

Thanks,
Nov 19 '05 #1
13 1441
Only VS.Net 2005 works with the 2.0 platform.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.

"charliewes t" <ch*********@di scussions.micro soft.com> wrote in message
news:4A******** *************** ***********@mic rosoft.com...
I am somewhat confused with what tool i need to develop Web applications w/
ASP.NET 2.0. Is it possible to use VS .Net 2003, or do i need to use the
Beta
versions of 2005 - Visual Web Developer Express?

Thanks,

Nov 19 '05 #2
No, you cannot develop ASP.NET 2.0 applications with VS.NET 2003.
You'll need to use Visual Studio 2005 or Visual Web Developer Express, which
are now in beta.
(or you *could* use notepad...)

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
"charliewes t" <ch*********@di scussions.micro soft.com> wrote in message
news:4A******** *************** ***********@mic rosoft.com...
I am somewhat confused with what tool i need to develop Web applications w/
ASP.NET 2.0. Is it possible to use VS .Net 2003, or do i need to use the
Beta
versions of 2005 - Visual Web Developer Express?

Thanks,

Nov 19 '05 #3
Actually, you could use Notepad.
2.0 applications will run fine if developed with Notepad.

You won't be able to develop 2.0 apps with VS.NET 2003.

You'll need either any beta of VS.NET 2005,
or any beta of VWD if you want to use MS Beta Tools.

No apps which run under a previous version of the
..Net Framework will work if you want to target *later*
versions of the Framework.


Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
=============== =======

"charliewes t" <ch*********@di scussions.micro soft.com> wrote in message
news:4A******** *************** ***********@mic rosoft.com...
I am somewhat confused with what tool i need to develop Web applications w/
ASP.NET 2.0. Is it possible to use VS .Net 2003, or do i need to use the
Beta
versions of 2005 - Visual Web Developer Express?

Thanks,

Nov 19 '05 #4
VWD works with the 2.0 version of the Framework.

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
=============== =======

"Kevin Spencer" <ke***@DIESPAMM ERSDIEtakempis. com> wrote in message
news:uX******** ******@TK2MSFTN GP14.phx.gbl...
Only VS.Net 2005 works with the 2.0 platform.

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
What You Seek Is What You Get.

"charliewes t" <ch*********@di scussions.micro soft.com> wrote in message
news:4A******** *************** ***********@mic rosoft.com...
I am somewhat confused with what tool i need to develop Web applications
w/
ASP.NET 2.0. Is it possible to use VS .Net 2003, or do i need to use the
Beta
versions of 2005 - Visual Web Developer Express?

Thanks,


Nov 19 '05 #5
VS.NET 2002 for 1.0
VS.NET 2003 for 1.1
VS.NET 2005 for 2.0
"charliewes t" <ch*********@di scussions.micro soft.com> wrote in message
news:4A******** *************** ***********@mic rosoft.com...
I am somewhat confused with what tool i need to develop Web applications w/
ASP.NET 2.0. Is it possible to use VS .Net 2003, or do i need to use the
Beta
versions of 2005 - Visual Web Developer Express?

Thanks,

Nov 19 '05 #6
In regards to Notepad, I heard the framework compiles any changed code at
run time. Is this done through the framework, or through the VS Compiler? if
it's done through the Framework, I am guessing you don't even need a
compiler to make asp.net 2.0 web apps. Is this correct?

"Steve C. Orr [MVP, MCSD]" <St***@Orr.ne t> wrote in message
news:ui******** ********@TK2MSF TNGP14.phx.gbl. ..
No, you cannot develop ASP.NET 2.0 applications with VS.NET 2003.
You'll need to use Visual Studio 2005 or Visual Web Developer Express,
which are now in beta.
(or you *could* use notepad...)

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
"charliewes t" <ch*********@di scussions.micro soft.com> wrote in message
news:4A******** *************** ***********@mic rosoft.com...
I am somewhat confused with what tool i need to develop Web applications
w/
ASP.NET 2.0. Is it possible to use VS .Net 2003, or do i need to use the
Beta
versions of 2005 - Visual Web Developer Express?

Thanks,


Nov 19 '05 #7
ASP.NET does compilation in one of three ways:

1) It's all done on the webserver. You deploy all your ASPX, ASCX, ASAX,
cs, vb, etc files and it does all the compilation at runtime.

2) You precompile everything. You run aspnet_compiler .exe to precompile all
your ASPX, ASCX, ASAX, cs, vb, etc files. You end up with empty ASPX files
that act as placeholders and a bunch of DLLs that get deployed into ~/bin.

3) You precompile all the cs, vb files into DLLs that go into ~/bin. The
ASPX, ASAX, ASCX, etc files all get compiled on the fly by ASP.NET on the
live server. This is very much like the model today except aspnet_compiler .exe
is what's used to do this compilation.

-Brock
DevelopMentor
http://staff.develop.com/ballen
In regards to Notepad, I heard the framework compiles any changed code
at run time. Is this done through the framework, or through the VS
Compiler? if it's done through the Framework, I am guessing you don't
even need a compiler to make asp.net 2.0 web apps. Is this correct?

"Steve C. Orr [MVP, MCSD]" <St***@Orr.ne t> wrote in message
news:ui******** ********@TK2MSF TNGP14.phx.gbl. ..
No, you cannot develop ASP.NET 2.0 applications with VS.NET 2003.
You'll need to use Visual Studio 2005 or Visual Web Developer
Express,
which are now in beta.
(or you *could* use notepad...)
--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
"charliewes t" <ch*********@di scussions.micro soft.com> wrote in
message news:4A******** *************** ***********@mic rosoft.com...
I am somewhat confused with what tool i need to develop Web
applications
w/
ASP.NET 2.0. Is it possible to use VS .Net 2003, or do i need to use
the
Beta
versions of 2005 - Visual Web Developer Express?
Thanks,


Nov 19 '05 #8
It's done via whichever language you've written your code in.
That's what JIT compiling does.

You *do* need a compiler to make, not only asp.net 2.0 apps,
but to be able to run *any* asp.net version's apps.

If you want to compile assemblies, though, you'll need
to invoke the same compiler with the "target:library " switch.

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
=============== =======

"Shawn H. Mesiatowsky" <smesiatowsky@_ no_spam_perfect fit-ind.com> wrote in
message news:%2******** ********@tk2msf tngp13.phx.gbl. ..
In regards to Notepad, I heard the framework compiles any changed code at
run time. Is this done through the framework, or through the VS Compiler?
if it's done through the Framework, I am guessing you don't even need a
compiler to make asp.net 2.0 web apps. Is this correct? "Steve C. Orr [MVP, MCSD]" <St***@Orr.ne t> wrote in message
news:ui******** ********@TK2MSF TNGP14.phx.gbl. ..
No, you cannot develop ASP.NET 2.0 applications with VS.NET 2003.
You'll need to use Visual Studio 2005 or Visual Web Developer Express,
which are now in beta.
(or you *could* use notepad...)

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
"charliewes t" <ch*********@di scussions.micro soft.com> wrote in message
news:4A******** *************** ***********@mic rosoft.com...
I am somewhat confused with what tool i need to develop Web applications
w/
ASP.NET 2.0. Is it possible to use VS .Net 2003, or do i need to use the
Beta
versions of 2005 - Visual Web Developer Express?

Thanks,



Nov 19 '05 #9
re:
2) You run aspnet_compiler .exe to precompile
Only good in ASP.NET 2.0, I'm afraid.

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
=============== =======

"Brock Allen" <ba****@NOSPAMd evelop.com> wrote in message
news:36******** **************@ msnews.microsof t.com... ASP.NET does compilation in one of three ways:

1) It's all done on the webserver. You deploy all your ASPX, ASCX, ASAX,
cs, vb, etc files and it does all the compilation at runtime.
2) You precompile everything. You run aspnet_compiler .exe to precompile
all your ASPX, ASCX, ASAX, cs, vb, etc files. You end up with empty ASPX
files that act as placeholders and a bunch of DLLs that get deployed into
~/bin.

3) You precompile all the cs, vb files into DLLs that go into ~/bin. The
ASPX, ASAX, ASCX, etc files all get compiled on the fly by ASP.NET on the
live server. This is very much like the model today except
aspnet_compiler .exe is what's used to do this compilation.
-Brock
DevelopMentor
http://staff.develop.com/ballen
In regards to Notepad, I heard the framework compiles any changed code
at run time. Is this done through the framework, or through the VS
Compiler? if it's done through the Framework, I am guessing you don't
even need a compiler to make asp.net 2.0 web apps. Is this correct?

"Steve C. Orr [MVP, MCSD]" <St***@Orr.ne t> wrote in message
news:ui******** ********@TK2MSF TNGP14.phx.gbl. ..
No, you cannot develop ASP.NET 2.0 applications with VS.NET 2003.
You'll need to use Visual Studio 2005 or Visual Web Developer
Express,
which are now in beta.
(or you *could* use notepad...)
--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
"charliewes t" <ch*********@di scussions.micro soft.com> wrote in
message news:4A******** *************** ***********@mic rosoft.com...

I am somewhat confused with what tool i need to develop Web
applications
w/
ASP.NET 2.0. Is it possible to use VS .Net 2003, or do i need to use
the
Beta
versions of 2005 - Visual Web Developer Express?
Thanks,


Nov 19 '05 #10

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

Similar topics

3
1533
by: Kengie | last post by:
Dear Sir/Madam, I just have a simple question. What is the difference between Visual Stuido ..Net 2002 and .Net 2003? Can I upgrade to 2003 from 2002? Can I develop for Windows CE or Windows Mobile from .Net 2002 Enterprise Archirect? Thank you for your time. Regards, Kengie
2
2418
by: MFS 43 | last post by:
If the front end of a database is in Access 2002 or 2003, can the backend be in Access 2000 or does the backend have to be converted to a later version?
2
1114
by: Özden Irmak | last post by:
Hello, I've read in some websites that you need some sort of tweak (a config file) to do this... Let me give you a specific example...I'm mostly interested in developing components and user controls (Including Windows Forms and Web Forms)...If I develop it with VS2003 and target it to v1.0, will a VS2002 user be able to use it without any tweak or configuration file?
4
1244
by: Bob Garbados | last post by:
We have some 1.1 sites developed in dreamweaver and we will be developing all new sites for the 2.0 framework when it's out of beta. We just purchased an ms subscription and will be using visual studio for development now. I like whidbey a lot more than vs.net 2003... can I skip learning 2003 and just use Whidbey to maintain our 1.1 sites? There are no project or solution files to convert since we developed everything in dreamweaver...
8
1046
by: Liz | last post by:
I'm going to be installing VS 2003 over my existing VS; are there any factors/considerations/precautions I should be aware of before doing so ? will the older VS be removed automatically or is it an option ? Thanks ... btw, I'm also going to install Office 2003; anyone know if my Outlook email accounts and other preferences/settings/etc will be preserved ? I can't seem to find an answer to this anywhere even though it seems an easy...
0
1268
by: jpegny | last post by:
Hello all, I'm in the middle of setting up a windows 2003 server for asp.net (with vb.net 2003) remote development/deployment. The problem is that as soon as I install service pack 1 on windows 2003 I can no longer remotely develop asp.net apps with vs.net 2003. I have set-up servers with all the patches except service pack 1 and they work fine but as soon as I install service pack 1 it breaks the remote development of asp.net.
9
4763
by: Paul H | last post by:
As I understand it, to distribute a runtime version of Access 2003 with my app I need to spend £600 on "Visual Studio Tools for Office System package" which contains the RT plus a load of stuff I do not want. Or.... I can supply the client with a copy of "AccessRT.msi" which is on my Office 2003 pro CD and not tell anyone! Who is being more unscrupulous, me or Microsoft? Surely Microsoft forcing me
7
1834
by: Chris Marsh | last post by:
All I've been asked run a VM on my development machine, with Windows Server 2003 installed. I've also been asked to then develop against this environment from the host machine, using Visual Studio 2003. Questions: 1. Is it even possible to use VS 2003 to develop when all files and IIS are on a remote machine or VM?
9
4497
by: prakashwadhwani | last post by:
Hi !! I'm about to develop a new project for a client. Should I go about it in Access 2003 or 2007 ? Purchasing it either for me or for my client is not a major consideration here ... what I'd like to know is the stability, speed & ease of use of both the products. I believe Access 2007 has a new file format too and that it may be slower.
0
9481
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10155
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10095
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9954
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8979
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6741
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5383
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5513
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2881
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.