ASPNET C# windows form and web form developing speed

J

Jason Huang

Hi,

I am thinking in comparing developing speed between C# Windows Form and C#
Web Form applications.
Assuming the scenario is that we have 2 C# coding engineers, engineer A has
2 years experience on developing C# windows form, engineer B has 2
experience on developing C# web form, B also knows Javascript as well. They
both has the same apprehesnion for the Database things, they all devote
themselves completely to their developing work, and their environment is
very supportive. Now they are working on thier projects, the Project A and
Project B are pretty similar except A is on Windows form and B is on Web
form.
My question is which engineer will complete their developing project first?
If one is faster than another, how much time ratio will their speed be?
Thanks for help.


Jason
 
P

Peter Duniho

[...]
My question is which engineer will complete their developing project
first?
If one is faster than another, how much time ratio will their speed be?

You should probably ask the engineers. They won't give you an accurate
estimate either, but at least it will be better than anything anyone here
might tell you (my own reply included :p ).
 
B

Brandon Gano

I assume this is a hypothetical scenario and you are simply trying to gauge
the development speed of ASP.NET versus Windows Forms. In any case, the
decision should be based on more than the development time involved.

What type of application is it? Will the primary purpose be entering data,
reporting, or both?

How many different people will be using the application? At the same time?

Will the application ever need to be used in a disconnected state (i.e.
without a network/Internet connection)?

The list goes on.

My personal experience is that web applications can be developed in a much
shorter period of time IF the application is suited to the web.
 
T

timmy123 via DotNetMonster.com

Hi,

If the application is n-tier, consisting of Data Layer, Business layer,
security layer and Presentation layer, the Data Layer, Business layer and
Security layer has been developed already, they both take same time for
developing presentation layer.

Database programming using Visual Basic and Csharp 2005
http://www.vkinfotek.com




Brandon said:
I assume this is a hypothetical scenario and you are simply trying to gauge
the development speed of ASP.NET versus Windows Forms. In any case, the
decision should be based on more than the development time involved.

What type of application is it? Will the primary purpose be entering data,
reporting, or both?

How many different people will be using the application? At the same time?

Will the application ever need to be used in a disconnected state (i.e.
without a network/Internet connection)?

The list goes on.

My personal experience is that web applications can be developed in a much
shorter period of time IF the application is suited to the web.
[quoted text clipped - 14 lines]
 
M

Mark Wilden

The guy with ASP.NET experience will find it easier to do Windows Forms work
than the other way around. ASP.NET involves things that Forms do not (such
as remembering where you were on every request).

///ark
 

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