473,395 Members | 1,496 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,395 software developers and data experts.

advice

I need to convince my boss to use ASP.NET
We will start a new web project soon.

he is hesitating between JSP, and ASP.NET.
I think I could convince him ASP.NET would be faster to develop, easier to
deploy.

(he is hard to convince, I suspect him to be afraid everone is antimicrosoft
as 90% destop seems to prove!)

however there is this few issue I still need to convince him:

1. will it run on Linux or Solaris ?
(of course there is mono ! I answered... although I have some doubt about
solaris)

2. does it scale well ?
(some dumb minded peope loudly said at last I know JSP scale well, while
this new .NET technology, mfff.....)
=> do you have any example of website with obviously huge traffic using
ASP.NET and working well ?
Nov 18 '05 #1
5 1055

"Lloyd Dupont" <ld@NewsAccount.galador.net> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
I need to convince my boss to use ASP.NET
We will start a new web project soon.

he is hesitating between JSP, and ASP.NET.
I think I could convince him ASP.NET would be faster to develop, easier to
deploy.

(he is hard to convince, I suspect him to be afraid everone is antimicrosoft as 90% destop seems to prove!)

however there is this few issue I still need to convince him:

1. will it run on Linux or Solaris ?
(of course there is mono ! I answered... although I have some doubt about
solaris)

2. does it scale well ?
(some dumb minded peope loudly said at last I know JSP scale well, while
this new .NET technology, mfff.....)
=> do you have any example of website with obviously huge traffic using
ASP.NET and working well ?

Nov 18 '05 #2
Hi.
I don't know enough about scaleability or portability,
but i know this:
From all the articles i'v read, it seems that C# compiles better and runs
faster than Java.
So if you build your site using .Net and C#, it will run faster and will be
able to serve more users.
Sharon.
"Lloyd Dupont" <ld@NewsAccount.galador.net> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
I need to convince my boss to use ASP.NET
We will start a new web project soon.

he is hesitating between JSP, and ASP.NET.
I think I could convince him ASP.NET would be faster to develop, easier to
deploy.

(he is hard to convince, I suspect him to be afraid everone is antimicrosoft as 90% destop seems to prove!)

however there is this few issue I still need to convince him:

1. will it run on Linux or Solaris ?
(of course there is mono ! I answered... although I have some doubt about
solaris)

2. does it scale well ?
(some dumb minded peope loudly said at last I know JSP scale well, while
this new .NET technology, mfff.....)
=> do you have any example of website with obviously huge traffic using
ASP.NET and working well ?

Nov 18 '05 #3

"Lloyd Dupont" <ld@NewsAccount.galador.net> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
I need to convince my boss to use ASP.NET
We will start a new web project soon.

he is hesitating between JSP, and ASP.NET.
I think I could convince him ASP.NET would be faster to develop, easier to
deploy.
Better tools: While some of the Java tools are nice, I know of none that
compare to VS.NET in developer effeciency. Once familiar, you can shave off
a decent percentage of time.

Better model: At least for web development. If you go extreme OO, the
benefits of .NET are less noticeable.

More flexibility: Java is fairly tightly sandboxed in all implementations.
You have the ability to tailor security to your needs and exposure and allow
a bit more in .NET. This part of the flexibility game is a double-edged
sword, however, as it can lead to security risks when taken to the nth. You
are also flexible in deployment, out of the box. While a great developer can
code anything in any platform (or nearly anything), .NET has the ability to
load full functioned desktop apps on a single click, if that is one of the
desires.
(he is hard to convince, I suspect him to be afraid everone is antimicrosoft as 90% destop seems to prove!)

however there is this few issue I still need to convince him:

1. will it run on Linux or Solaris ?
(of course there is mono ! I answered... although I have some doubt about
solaris)
Not sure of Solaris right now. Linux definitely, as well as BSD. You have
both Mono and DotGnu out there to pick from, if you need to deploy on Linux.
You will not get all of the benefits of the .NET platform from either of
these open source initiatives, however, as they have not completed version
1.0 functionality, much less 1.1. Version 2.0 out next year, so there is a
lot of catching up to do.

I am not sure I could sell your boss, however, without a test on Solaris.
The speed of development might be hamstrung by the Mono or DotGnu
implementation.
2. does it scale well ?
(some dumb minded peope loudly said at last I know JSP scale well, while
this new .NET technology, mfff.....)
=> do you have any example of website with obviously huge traffic using
ASP.NET and working well ?


Most of the comparisons show .NET outpacing Java by a decent measure. As far
as large sites on ASP.NET, you certainly have Microsoft (although they
occasionally use .mspx custom extensions). Buy.com is moving to .NET, but
much of their site (rather huge) is still ASP. Not sure who else, but I am
sure a google search could yield an answer. The number of sites using .NET
has now passed Java, according to NetCraft, so I am fairly certain you can
find some
(http://news.netcraft.com/archives/20..._jsp_and_java_
servlets.html).

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

************************************************
Think Outside the Box!
************************************************
Nov 18 '05 #4
I hate to say this, being a Microsoft MVP, and a lover of everything
Microsoft, but you may NOT need to convince your boss to use ASP.Net. What I
believe you DO need to convince your boss is to go with one technology or
another, and not to mix Microsoft and non-Microsoft technologies. Why do I
say this, when it can certainly be done, and many businesses do it? Because
Microsoft technologies are designed to work with other Microsoft
technologies well, and follow a certain (successful) paradigm that Microsoft
has developed for Rapid Application Development. Whoever builds the stack
must maintain it. Microsoft has a great stack. But if you are developing on
a Linux or Solaris platform, and your boss wants to keep it that way, well,
you might want to stick with that route instead. While these stacks CAN
interact, it is problematic at best, and I have worked at a company that
ended up out of business because they tried to go both ways.

So, maybe my best advice to you is, you need to convince your boss to go
whole hog one way or the other, and if possible, make it the Microsoft way
(he will be glad in the long run).

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"Lloyd Dupont" <ld@NewsAccount.galador.net> wrote in message
news:#c**************@TK2MSFTNGP12.phx.gbl...
I need to convince my boss to use ASP.NET
We will start a new web project soon.

he is hesitating between JSP, and ASP.NET.
I think I could convince him ASP.NET would be faster to develop, easier to
deploy.

(he is hard to convince, I suspect him to be afraid everone is antimicrosoft as 90% destop seems to prove!)

however there is this few issue I still need to convince him:

1. will it run on Linux or Solaris ?
(of course there is mono ! I answered... although I have some doubt about
solaris)

2. does it scale well ?
(some dumb minded peope loudly said at last I know JSP scale well, while
this new .NET technology, mfff.....)
=> do you have any example of website with obviously huge traffic using
ASP.NET and working well ?

Nov 18 '05 #5
Thanks guys !
With your answers and some of my research I begin to have a better picture
of what I should say ....
Nov 18 '05 #6

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

Similar topics

75
by: Howard Nease | last post by:
Hello, everyone. I would appreciate any advice that someone could give me on my future career path. Here is my situation: I am a bright Junior in a very well-respected private high school, taking...
5
by: Martin Piper | last post by:
Hi all. I've recently landed myself the position of trainee C++ programmer which I'm extremely pleased about, but also nervous. According to the feedback from the interview, I have a good...
3
by: Andy Dingley | last post by:
I've just started on a new project and inherited a huge pile of XSLT (and I use the term "pile" advisedly !) It runs at glacial speed, and I need to fix this this. Platform is MSXML 4 / ASP ...
11
by: ma740988 | last post by:
I'm perusing a slide with roughly 12 bullets spread across 3 pages. Each bullet reflects 'advice'. I'm ok with all but 1 bullet, more specifically the bullet that states: " Avoid the STL unless...
6
by: J Rieggle | last post by:
Hi there, I am stuck on a problem that relates to eCommerce sites, but isnt ASP.NET specific (sorry). The ecommerce site is working in the UK, and products will be sold in pounds stirling. ...
13
by: Alan Silver | last post by:
Hello, MSDN (amongst other places) is full of helpful advice on ways to do data access, but they all seem geared to wards enterprise applications. Maybe I'm in a minority, but I don't have those...
7
by: John Paul | last post by:
I'm thinking of building an e-commerce site in php. Anyone got any advice in building one? What is the best way to implement a payment system? Are any legal issues involved? Thanks,
232
by: robert maas, see http://tinyurl.com/uh3t | last post by:
I'm working on examples of programming in several languages, all (except PHP) running under CGI so that I can show both the source files and the actually running of the examples online. The first...
3
by: mesut | last post by:
Hi colleagues, I need your advice... I have approx 1,5 years experience with ASP.NET/VB.NET 2005 and I have to switch over into C# 2005 language. I don't have experience with C# 2005...
7
by: SM | last post by:
Hello, I have a index.php template (2 columns). The right columns contains a bunch of links (interviews, poems, etc...) The left columns contains the actual article. So if I click on a link on...
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
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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...
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...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
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...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
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...

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.