Skip to main content

Posts

Showing posts with the label Authentication

ASP.NET default Login page and controller modification for using with Web Service or local method

By default the ASP.NET login page and controls are bound with default methods and its bit uneasy to work with ( at least for some ppl like me). We could make use of same controller and pages with our own mechanism of logging in. 1. Changes on web.config <location path="Login.aspx">     <system.web>       <authorization>         <allow users="*" />       </authorization>     </system.web>   </location>   <location path="Styles">     <system.web>       <authorization>         <allow users="*" />       </authorization>     </system.web>   </location>   <location path="Images">     <system.web>       <authorization>         <allow users="*" />...