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.

  • 相关阅读:
    Nginx访问日志、 Nginx日志切割、静态文件不记录日志和过期时间
    nginx的安装 、Nginx默认虚拟主机、nginx用户认证、nginx 域名重定向
    lnmp架构、mysql的安装、php的安装、nginx相关
    限定某个目录禁止解析php 、限制user_agent 、php的配制文件、PHP的动态扩展模块
    配置url防盗链、目录权限访问控制Directory、文件访问权限控制FilesMatch
    指令的概述
    点击事件交互示例
    日期过滤器示例
    in和not in注意事项
    mysql里的case用法详解
  • 原文地址:https://www.cnblogs.com/erwin/p/1505954.html
Copyright © 2011-2022 走看看