Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Windows FORMS for Intranet instead of Web Based

Tags:

winforms

Can we implement a enterprise wide intranet application completely with WinForms instead of Browser based Web apps? What are pros and cons and which is preferred over other?

like image 864
Asp_GCP Avatar asked May 02 '09 13:05

Asp_GCP


2 Answers

Some stuff on my mind:

WinForms Pros

  • Richer user experience
  • More responsive
  • Usually easier to write interactive processes

Web App Pros

  • Centralized maintenance (easy to update, ...)
  • Centralized data access security
  • Easier to access over the Internet and on the go
  • Does not rely on anything except a browser on the client (so the client platform doesn't matter)
like image 144
mmx Avatar answered Sep 27 '22 16:09

mmx


We developed a lot of winforms apps at the place I used to work. ClickOnce made things a lot easier in the case of deployment.

like image 32
Gulzar Nazim Avatar answered Sep 27 '22 18:09

Gulzar Nazim