Results 1 to 3 of 3

Thread: Windows App Versus ASP Web App

  1. #1

    Thread Starter
    New Member
    Join Date
    Aug 2005
    Posts
    5

    Windows App Versus ASP Web App

    At my company we are moving from VB6 to VB.NET 2003. We are currently debating whether to deploy apps on the web or as windows applications. Can anyone point me to some analysis of both platforms, the advantages and disadvantages of each. My goal is to make some corporate wide standards to guide our decisions in the future.

    For example, how much more work does it take to code, deploy and maintain a web app versus a windows app?

    Someone has to have studied this and published it, don't you think?

    Thanks.

  2. #2
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: Windows App Versus ASP Web App

    The main advantage of Web apps comes down to deployment. Stick the latest version of your app on your Web server and everyone's using it. ClickOnce deployment has now brought Windows apps closer to Web apps in this regard. The main advantage of Windows apps comes down to functionality. There are some things that are more difficult to do from within a browser and its limited access model. ASP.NET 2.0 brings Web apps closer to Windows apps in this regard. This is coming from someone who has next to no experience with creating Web apps. More than that I can't really give you, although if you want to do this with Microsoft development tools then I'd suggest searching MSDN as a first step.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

  3. #3
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: Windows App Versus ASP Web App

    Business and enterprise applications, which are more logic than they are graphics should (highly reccommended) be created as ASP.NET Web applications. This is because the code used, VB.NET/C#, can accomplish all the logical operations and information processing that is required by the application. With windows applications, you have the potential headache of a GUI that a user has to install, among a host of other potential issues.

    With web apps, all you need is a browser.

    If, however, you are creating an application that involves a rich user experience, such as the ability to drag and drop items, or that involves graphics, or manipulating the WIndows environment, then windows apps are the way to go.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width