When to use ASP.NET MVC vs. ASP.NET Web Forms?

前端 未结 6 1425
梦毁少年i
梦毁少年i 2020-12-09 09:23

One of the common questions asked regarding ASP.NET MVC is why should you use it over ASP.NET Web Forms? The answer generally includes ViewState and clean URLs, amongst oth

6条回答
  •  有刺的猬
    2020-12-09 09:54

    Use MVC if all your team members are skilled enough to manage "control over HTML", otherwise your code will turn into a tag soup.

    In other words

    bool useMvc = true;
    foreach (TeamMember member in team.Members)
    {
        useMvc = useMvc && member.IsSkilled;
    } 
    

提交回复
热议问题