473,769 Members | 2,143 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

ASPNET C# windows form and web form developing speed

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
Jul 17 '07 #1
4 2438
On Mon, 16 Jul 2007 20:06:52 -0700, Jason Huang
<Ja************ @hotmail.comwro te:
[...]
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 ).
Jul 17 '07 #2
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.
"Jason Huang" <Ja************ @hotmail.comwro te in message
news:uk******** ********@TK2MSF TNGP05.phx.gbl. ..
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
Jul 17 '07 #3
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 Gano wrote:
>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.
>Hi,
[quoted text clipped - 14 lines]
>>
Jason
--
Message posted via DotNetMonster.c om
http://www.dotnetmonster.com/Uwe/For...sharp/200707/1

Jul 17 '07 #4
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
Jul 17 '07 #5

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

Similar topics

0
430
by: Hamed | last post by:
Hello I have employed as a developer in a software company that its team uses FoxPro / VB 6.0 / VC++ 6.0 as the developing tools and newly is going to migrate to VS.NET. There is a project modified that is to upgrade a big, more than 100,000 lines DOS based program developed by FoxPro 2.x to .NET platform. The design is as previous and the implementation will be reprogrammed. As a duty in my job I should find an answer about the
4
1658
by: Michał Januszczyk | last post by:
What may be the reason for the following behavior: There is an asp.net application. The application is quite complex. Sometimes user request processing lasts long (even 1 ). When user postbacks some data or enters the page for the first time, his browser is not freezed. Whenever the user wants, he can stop, refresh or go somewhere else, whilst the request is being processed.
3
1252
by: pshiue | last post by:
I am developing ASP.NET application in VS.NET. It gave me an error message "Login failed for user 'MachineName\ASPNET". I tried to share the database directory but it did not work. I look into the database connection when setting the properties. It tested OK. However, when I run the application, it gives me error. When I first develop this application as Windows application, it was fine. Now, I make it as ASP.NET application and then it...
6
1918
by: thinkfr33ly | last post by:
I've been developing on this machine for months and have created many ASP.NET applications that connect to various remote machines, mostly databases. All of a sudden, I am unable to connect to my SQL Server even though I have a valid connection string (no, I'm not using integrated security). This exact connection string works perfectly in WinForms apps. Anytime I try to connect via an ASP.NET app, I get the familiar message "SQL...
4
308
by: Volker Hetzer | last post by:
Hi! After messing around for some time with Tcl/Tk and VBScript, we've finally reached the point where we need to put some speed into our applications. So, our typical application looks like this. We've got this huge CAD tool, called Mentor Expedition, which understands VBScript and JScript and offer an ActiveX-Interface for Automation.
4
4365
by: iKiLL | last post by:
Hi All I am Developing in C# with VS2005. I am Developing a Windows Mobile Forms Application with the CF2 My problem is that when the Input panel is displayed my screen does not
2
3810
by: =?Utf-8?B?SmVmZnJleQ==?= | last post by:
How to configure the IIS, ASPNET userID, Windows or SQL Authentiation, std or integrated security for SQLserver database? The VS.net 2002 web server and SQL Server client are at the same PC, while the SQL Server database is at another PC. The dataset and DataGrid were created successfully. However, when trying to run a Web Form with a table, a server error msg: Login failed for user '(null)'. Reason: Not associated with a trusted...
16
3892
by: Mich | last post by:
Hi, i'm building an web application for anonymous users. They can take a look in the website, nothing more. In order to perform other actions, the anonymous user must be logged. So i create an aspx page with the CreateUserWizard control. The user can fill his username, password etc .... My problem is: when an user fills everything and clicks on button "create an account", nothing happens (no error, but no user account created). I...
3
2236
by: rcook349 | last post by:
I'm about to get a new laptop to be used primarily for Microsoft development. - Windows Vista - Visual Studio Team System 2008 (maybe 2005 as well) - SQL Server 2008 Developer (maybe 2005 as well) - Infragistics, other 3rd party So, should I install 64-bit versions of all apps? Think I might run into a snag somewhere and regret it (i.e. stick to 32-bit)?
0
10210
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9990
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
9860
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
8869
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...
1
7406
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6668
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
5445
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3955
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3560
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.