tags:

views:

65

answers:

2

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?

+2  A: 

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)
Mehrdad Afshari
All authentication to the intranet is done with Windows Authentication. I am referring to Intranet apps and none of your points strongly suggest why I cannot use Winform for Intranet
Asp_GCP
I didn't say you shouldn't use it. Which is better depends on the specific circumstance. I just mentioned some key points to consider.
Mehrdad Afshari
+3  A: 

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.

Gulzar