c# - Asp.Net MVC and WebForm -


Can I find MVC and webform in the same site / virtual directory?

I have a web site but I would like to implement MVC Note: The website also has some classic ASP files.

Yes, you can join everyone in the same project.

See how to mix all the technologies.

You can add MVC in existing WinForms application without problems. You may have to add the unknown route rule to your existing pages, the classic ASP may need special handling (just potential - there is no information about it).

  route. Unknown route ("{myWebForms} .aspx / {* pathInfo}");    

Comments

Popular posts from this blog

Python SQLAlchemy:AttributeError: Neither 'Column' object nor 'Comparator' object has an attribute 'schema' -

java - How not to audit a join table and related entities using Hibernate Envers? -

mongodb - CakePHP paginator ignoring order, but only for certain values -