zoukankan      html  css  js  c++  java
  • Comparing ASP.NET MVC and ASP.NET

    Comparing ASP.NET MVC and ASP.NET

    You should know that the ASP.NET MVC framework is not a replacement for ASP.NET Webforms—it's an alternative that you can choose if it is well-suited for a specific situation. Make sure that you weigh and compare the advantages of each solution prior to picking a specific direction.

    The ASP.NET MVC framework offers the following advantages:

    1. Complexity of application logic is made easier to manage because of the separation of an application into model, view, and controller.
    2. It allows for easier parallel development; each developer can work on a separate component of the MVC pattern.
    3. It provides good support for TDD, mocking, and unit testing frameworks. TDD enables you to write tests for an application first, after which the application logic is developed.
    4. It does not use ViewState or server-based forms, which allows you to have full control over the application's behavior and HTML markup.
    5. It uses RESTful interfaces for URLs, which is better for SEO (Search Engine Optimization). REST is short for REpresentational State Transfer—the concept of using URLs as the link to a resource, which can be a controller action method, rather than to physical files on the web server.
    6. A typical page size is small, because no unnecessary data is transferred in the form of hidden ViewState data.
    7. It integrates easily with client-side JavaScript frameworks such as jQuery or ExtJS.

    ASP.NET Webforms offers the following advantages:

    1. It offers an event model over HTTP that is familiar to any developer. This event model also benefits the creation of business web applications.
    2. It provides a lot of controls that are familiar to any developer—data components such as data grids and lists, validation controls, and so on.
    These components are highly integrated in the development environment.
    3. There are numerous third-party control vendors that can deliver almost any possible control.
    4. Being familiar to developers allows ASP.NET Webforms to facilitate rapid application development.
    5. Functionality is concentrated per page. It uses ViewState and server-based forms, which makes state management easier.

  • 相关阅读:
    Android 面试知识集1
    Android 开发自己的网络收音机2——电台列表(SlidingMenu侧滑栏)
    Android 程序drawable资源保存到data目录
    Android 开发自己的网络收音机1——功能要求及设计方案
    Android内存机制分析2——分析APP内存使用情况
    Android内存机制分析1——了解Android堆和栈
    Android Gallery实现3D相册(附效果图+Demo源码)
    Android 后台发送邮件 (收集应用异常信息+Demo代码)
    纯代码写UI的时候,如何指定style?
    解决SimpleCursorAdapter不能自动更新的问题
  • 原文地址:https://www.cnblogs.com/erwin/p/1505954.html
Copyright © 2011-2022 走看看