InterviewSolution
Saved Bookmarks
| 1. |
Mention What Is The Difference Between Adding Routes, To A Web Form Application And An Mvc Application? |
|
Answer» To add ROUTES to a webform APPLICATION, we can USE MapPageRoute() method of the RouteCollection class, where adding routes to an MVC application, you can use MapRoute() method. To add routes to a webform application, we can use MapPageRoute() method of the RouteCollection class, where adding routes to an MVC application, you can use MapRoute() method. |
|