Things I cannot do in ASP.NET MVC

前端 未结 6 2187
轻奢々
轻奢々 2021-02-08 05:13

Are there some things I cannot do with ASP.NET MVC? Things that are only possible with ASP.NET WebForms, or extremely much easier with WebForms?

We consider u

6条回答
  •  太阳男子
    2021-02-08 05:55

    I think view-state is non existent in MVC. You will have to track your own view state in some other way than the built in view-state in non MVC projects.

    EDIT: According to comments: "Getting rid of ViewState is an advantage not a disadvantage". – Craig

提交回复
热议问题