ASP.NET MVC alongside Web Forms in the same web app?

后端 未结 5 1952
深忆病人
深忆病人 2020-12-03 09:02

Has anyone successfully deployed ASP.NET MVC alongside Web Forms in the same application in a production environment? Were there any conflicts or gotchas you faced while doi

5条回答
  •  长情又很酷
    2020-12-03 09:47

    Has anyone successfully deployed ASP.NET MVC alongside Web Forms in the same application in a production environment?

    I never mixed ASP.NET MVC and classic WebForms in the same application. I make them run in separate applications and communicate between them with standard HTTP techniques (query string parameters, form posts, cookies, ...).

    Is it really as easy as shown here in practice?

    Yes, it is as easy as that.

提交回复
热议问题