Click here to Skip to main content
15,907,326 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: Religious question - MVC benefits vs ASP.NET? Pin
Mycroft Holmes17-Nov-13 19:09
professionalMycroft Holmes17-Nov-13 19:09 
GeneralRe: Religious question - MVC benefits vs ASP.NET? Pin
Bruce Patin16-Oct-13 6:08
Bruce Patin16-Oct-13 6:08 
GeneralRe: Religious question - MVC benefits vs ASP.NET? Pin
Christopher Duncan16-Oct-13 6:51
Christopher Duncan16-Oct-13 6:51 
GeneralRe: Religious question - MVC benefits vs ASP.NET? Pin
Jay N.16-Oct-13 9:07
Jay N.16-Oct-13 9:07 
GeneralRe: Religious question - MVC benefits vs ASP.NET? Pin
Christopher Duncan16-Oct-13 9:10
Christopher Duncan16-Oct-13 9:10 
GeneralRe: Religious question - MVC benefits vs ASP.NET? Pin
Kirk Wood16-Oct-13 15:55
Kirk Wood16-Oct-13 15:55 
GeneralRe: Religious question - MVC benefits vs ASP.NET? Pin
Christopher Duncan17-Oct-13 1:37
Christopher Duncan17-Oct-13 1:37 
GeneralRe: Religious question - MVC benefits vs ASP.NET? Pin
Sam Meacham19-Oct-13 9:16
Sam Meacham19-Oct-13 9:16 
I don't have the time to read everyone else's replies, but here's my 2 cents. WebForms was an attempt to copy the 90s desktop GUI model, and put it on top of a stateless protocol (http). This is why for every UI element, you have both a server control and a client control. In my experience, web forms is awful. The viewstate is ugly. The page postback model is not straight forward. Attempting to sync between client and server controls can be brittle. Everything seems to just sneak in a little hack in (ScriptManager.RegisterStartupScript, etc.) here or there to keep everything working. It's prone to many errors related only to the plumbing.

MVC is simple, clean, fast and based directly on the standards that the web was built on, and that it's using going forward. The conversion isn't difficult once you get comfortable with MVC. Your ui state is in the ui, your data model is in the data layer, and your services and controllers are the middle men. There are TONS of modern options better than webforms. Stay away.
GeneralMessage Removed Pin
15-Oct-13 9:18
professionalN_tro_P15-Oct-13 9:18 
GeneralRe: Life (spoiler) Pin
Kornfeld Eliyahu Peter15-Oct-13 9:28
professionalKornfeld Eliyahu Peter15-Oct-13 9:28 
GeneralRe: Life (spoiler) PinPopular
Maximilien15-Oct-13 9:34
Maximilien15-Oct-13 9:34 
GeneralRe: Life (spoiler) Pin
chriselst15-Oct-13 9:39
chriselst15-Oct-13 9:39 
GeneralRe: Life (spoiler) Pin
Ranjan.D15-Oct-13 9:52
professionalRanjan.D15-Oct-13 9:52 
GeneralRe: Life (spoiler) Pin
Kornfeld Eliyahu Peter15-Oct-13 9:58
professionalKornfeld Eliyahu Peter15-Oct-13 9:58 
GeneralRe: Life (spoiler) Pin
Ranjan.D15-Oct-13 10:23
professionalRanjan.D15-Oct-13 10:23 
GeneralMessage Removed Pin
15-Oct-13 10:38
professionalN_tro_P15-Oct-13 10:38 
GeneralRe: Life (spoiler) Pin
Ranjan.D15-Oct-13 11:16
professionalRanjan.D15-Oct-13 11:16 
QuestionRe: Life (spoiler) Pin
Captain Price15-Oct-13 18:16
professionalCaptain Price15-Oct-13 18:16 
AnswerRe: Life (spoiler) Pin
Ranjan.D16-Oct-13 0:17
professionalRanjan.D16-Oct-13 0:17 
GeneralRe: Life (spoiler) Pin
Mike Hankey15-Oct-13 10:11
mveMike Hankey15-Oct-13 10:11 
GeneralRe: Life (spoiler) Pin
R. Giskard Reventlov15-Oct-13 10:14
R. Giskard Reventlov15-Oct-13 10:14 
GeneralRe: Life (spoiler) Pin
PIEBALDconsult15-Oct-13 10:17
mvePIEBALDconsult15-Oct-13 10:17 
GeneralRe: Life (spoiler) Pin
ricmil4215-Oct-13 11:05
ricmil4215-Oct-13 11:05 
GeneralRe: Life (spoiler) Pin
virang_2115-Oct-13 11:33
virang_2115-Oct-13 11:33 
JokeRe: Life (spoiler) Pin
Matt T Heffron15-Oct-13 14:59
professionalMatt T Heffron15-Oct-13 14:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.