How to set default route in asp.net mvc application from web.config Ask Question
By   Junaid A     19-Nov-2024    1

How to set default route in asp.net mvc application from web.config

Solution:

Add Key web.config as below

  <add key="DeafaultPageAfterLogin" value="/MyOrderedMeals" />


in controller or route.config file set redirect url to


 if (ConfigurationManager.AppSettings["DeafaultPageAfterLogin"]!=null)
                    {
                       
                        return Redirect(ConfigurationManager.AppSettings["DeafaultPageAfterLogin"].ToString());
                    }


in else part you can set default route.

Solutions


10349
Copyright Future Minutes © 2015- 2024 All Rights Reserved.   Terms of Service  |   Privacy Policy |  Contact US|  Pages|  Whats new?
Update on: Dec 20 2023 05:10 PM