Answers for "loginurl attribute is not allowed error in web config"

0

loginurl attribute is not allowed error in web config

<appSettings>
  <add key="loginUrl" value="~/Authentication/LogOn" />
</appSettings>

<system.web>
  <authentication mode="Forms">
    <forms loginUrl="~/Authentication/LogOn" timeout="2880"></forms>
   </authentication>
   <authorization>
     <deny users="?"/>
   </authorization>
</system.web>
Posted by: Guest on August-24-2020

Code answers related to "loginurl attribute is not allowed error in web config"

Browse Popular Code Answers by Language