473,385 Members | 1,531 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.

Best OS for .NET developement

We are building a new developement system specifically for .NET developement.
We will bw using VB. and C#.
What will be the best OS to install on the new system.
What will be the best concidering the developed apps will be ran on
everything from Win98 to XP Pro.
What will be the best considering building interactive web apps using ASP.NET
Nov 22 '05 #1
5 2047
Hey Rich,

For whatever free advice is worth...

As always, there are a number of considerations, but generally speaking, I'd
lean towards XP or at least 2000. For development, the IIS handling will be
smoother (and I'm not even sure if 98 can even do what you'd need on the web
side--at least not without extra installation). I'm assuming that 98
machines would only be browser-based clients of the ASP.NET portions.

You might want to consider a spare machine or dual booting for test
purposes, but all in all, .NET is designed for going forward and
hamstringing yourself during day-to-day development just for higher
confidence on a three generation back OS won't encounter any issues will
probably be detrimental. Not to mention that, while I haven't seen any
reference for the next version, it wouldn't be shocking for MS to not
officially support it on pre-2000 OSs before much longer.

- John
"RichG" <Ri***@discussions.microsoft.com> wrote in message
news:62**********************************@microsof t.com...
We are building a new developement system specifically for .NET developement. We will bw using VB. and C#.
What will be the best OS to install on the new system.
What will be the best concidering the developed apps will be ran on
everything from Win98 to XP Pro.
What will be the best considering building interactive web apps using

ASP.NET
Nov 22 '05 #2
My personal opinion: XP SP2 if you are developing a windows client
(because it is the most current, secure, and useful windows client) and
Windows Server 2003 if you are developing a web app.

Also, at this point, if I were developing more than a few pages for an
ASP.NET application,
I would also be investigating whether I could use Sharepoint and simply add
my functionality as web-parts.

Anyway, good luck,
--- Nick

"RichG" <Ri***@discussions.microsoft.com> wrote in message
news:62**********************************@microsof t.com...
We are building a new developement system specifically for .NET developement. We will bw using VB. and C#.
What will be the best OS to install on the new system.
What will be the best concidering the developed apps will be ran on
everything from Win98 to XP Pro.
What will be the best considering building interactive web apps using

ASP.NET
Nov 22 '05 #3
Nick
I am assuming when you say XP thet you mean XP Pro and not the home edition.
If this is true, what is the advantage of developing on Pro rather than the
home edition.
Also why would 2003 be better than XP for developing web apps.
We own every operating system Micorsoft has, so i can install any of them,
but Id rather not dual boot. Id rather buy another system for another OS.
Thanks

"Nick Malik" wrote:
My personal opinion: XP SP2 if you are developing a windows client
(because it is the most current, secure, and useful windows client) and
Windows Server 2003 if you are developing a web app.

Also, at this point, if I were developing more than a few pages for an
ASP.NET application,
I would also be investigating whether I could use Sharepoint and simply add
my functionality as web-parts.

Anyway, good luck,
--- Nick

"RichG" <Ri***@discussions.microsoft.com> wrote in message
news:62**********************************@microsof t.com...
We are building a new developement system specifically for .NET

developement.
We will bw using VB. and C#.
What will be the best OS to install on the new system.
What will be the best concidering the developed apps will be ran on
everything from Win98 to XP Pro.
What will be the best considering building interactive web apps using

ASP.NET

Nov 22 '05 #4
Yes, I mean XP Pro. You don't get the web server with XP Home, and you
can't develop web services or ASP.NET apps very well on a machine with no
web server.

You say you own every OS... they you probably have MSDN Universal. Good
choice.

2003 is better because:
a) you get IIS 6, which gives you application pooling, which is easier to
secure and allows more isolation between apps. That way, one apps bugs are
less likely to affect another app... you could, technically, use the same
web server to test three or four apps at the same time.

b) you get Sharepoint for free (Windows Sharepoint Services is a free
download for Windows Server 2003. This is the foundational technology for
Sharepoint Portal Server, which builds on WSS, but you don't need SPS to get
many of the best features, especially if you want to develop a new ASP.NET
app, and don't want to write as much code).

c) you get better support for multiprocessing servers

d) you get better support for Virtual Server (which I heartily recommend, by
the way, as a way of creating multiple test environments without needing to
create a half-dozen computers with different versions of an OS and/or
browser).

I'm sure there are white papers that do a better job... but that's my two
bits.
--- Nick

"RichG" <Ri***@discussions.microsoft.com> wrote in message
news:17**********************************@microsof t.com...
Nick
I am assuming when you say XP thet you mean XP Pro and not the home edition. If this is true, what is the advantage of developing on Pro rather than the home edition.
Also why would 2003 be better than XP for developing web apps.
We own every operating system Micorsoft has, so i can install any of them,
but Id rather not dual boot. Id rather buy another system for another OS.
Thanks

"Nick Malik" wrote:
My personal opinion: XP SP2 if you are developing a windows client
(because it is the most current, secure, and useful windows client) and
Windows Server 2003 if you are developing a web app.

Also, at this point, if I were developing more than a few pages for an
ASP.NET application,
I would also be investigating whether I could use Sharepoint and simply add my functionality as web-parts.

Anyway, good luck,
--- Nick

"RichG" <Ri***@discussions.microsoft.com> wrote in message
news:62**********************************@microsof t.com...
We are building a new developement system specifically for .NET

developement.
We will bw using VB. and C#.
What will be the best OS to install on the new system.
What will be the best concidering the developed apps will be ran on
everything from Win98 to XP Pro.
What will be the best considering building interactive web apps using

ASP.NET

Nov 22 '05 #5
Thanks Nick
Sounds like we'll be getting another box for Win2003. We have an immediate
need to do an in house database app for a client that will run on their
network and not access the web at all. They are running XP Home on all
systems except the server which is 2003. We chose XP Home because of it's
simplicity. So I'll do this with VB.NET on an XP Pro system.
Rich

"Nick Malik" wrote:
Yes, I mean XP Pro. You don't get the web server with XP Home, and you
can't develop web services or ASP.NET apps very well on a machine with no
web server.

You say you own every OS... they you probably have MSDN Universal. Good
choice.

2003 is better because:
a) you get IIS 6, which gives you application pooling, which is easier to
secure and allows more isolation between apps. That way, one apps bugs are
less likely to affect another app... you could, technically, use the same
web server to test three or four apps at the same time.

b) you get Sharepoint for free (Windows Sharepoint Services is a free
download for Windows Server 2003. This is the foundational technology for
Sharepoint Portal Server, which builds on WSS, but you don't need SPS to get
many of the best features, especially if you want to develop a new ASP.NET
app, and don't want to write as much code).

c) you get better support for multiprocessing servers

d) you get better support for Virtual Server (which I heartily recommend, by
the way, as a way of creating multiple test environments without needing to
create a half-dozen computers with different versions of an OS and/or
browser).

I'm sure there are white papers that do a better job... but that's my two
bits.
--- Nick

"RichG" <Ri***@discussions.microsoft.com> wrote in message
news:17**********************************@microsof t.com...
Nick
I am assuming when you say XP thet you mean XP Pro and not the home

edition.
If this is true, what is the advantage of developing on Pro rather than

the
home edition.
Also why would 2003 be better than XP for developing web apps.
We own every operating system Micorsoft has, so i can install any of them,
but Id rather not dual boot. Id rather buy another system for another OS.
Thanks

"Nick Malik" wrote:
My personal opinion: XP SP2 if you are developing a windows client
(because it is the most current, secure, and useful windows client) and
Windows Server 2003 if you are developing a web app.

Also, at this point, if I were developing more than a few pages for an
ASP.NET application,
I would also be investigating whether I could use Sharepoint and simply add my functionality as web-parts.

Anyway, good luck,
--- Nick

"RichG" <Ri***@discussions.microsoft.com> wrote in message
news:62**********************************@microsof t.com...
> We are building a new developement system specifically for .NET
developement.
> We will bw using VB. and C#.
> What will be the best OS to install on the new system.
> What will be the best concidering the developed apps will be ran on
> everything from Win98 to XP Pro.
> What will be the best considering building interactive web apps using
ASP.NET


Nov 22 '05 #6

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

Similar topics

1
by: Petri | last post by:
I'm starting a new project using PHP. I'm a .NET programmer and I'd like to use an interface for PHP that has a look and feel of Visual Studio. Are there any such tools out there? And is Visual...
1
by: Anks | last post by:
hi i am new to java and want to try some good tools for testing and developement can anybody tell me about some easily approachable tools for same. Thanks Anks
5
by: RichG | last post by:
We are building a new developement system specifically for .NET developement. We will bw using VB. and C#. What will be the best OS to install on the new system. What will be the best concidering...
1
by: cyshao | last post by:
Hi, all: Are there any RPC developement example available? Thanks CYShao :-)
1
by: SimonZ | last post by:
How can I go into debbuging mode without building a whole project. If I change something on my page and press F5(Debugging), I would like that only this page is builded again not whole project. ...
3
by: nikhilbhavsar | last post by:
Hi Frnds , I want to debug a stored procedure. It is written in SQL. I am using Developement center for creating stored procedures. I built the stored procedure with Debug option and also...
9
by: optimistx | last post by:
Which url in your opinion would be a good or even the best example of javascript usage in a set of pages at least say 10 or more pages? How to use css, how to split js-code to files, how to code...
4
by: jack | last post by:
HI all i dont know whether to ask this question in this group or not i just want to do proper step wise developement like planning and then codeing and then testing etc i have just got a...
4
by: Amai | last post by:
I'm ineterested in learning C# for Web Service and Developement, in conjunction with both ASP.NET and VB.NET. However, i don't really know where to start. Are there classes available at local...
0
by: zeeshanqasimtaji | last post by:
PROVIDE BEST “IT” CONSULTANCY IN ONE ROOF BY EXPERT “SIR ZEESHAN QASIM TAJI” http://www.sirzeeshan.com Email Addresses : info@sirzeeshan.com zeeshanqasimtaji@hotmail.com...
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: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
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: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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:
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: 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...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

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.