Can I force logout of SQL for an asp.net membership account?
No record of registered users is stored in forms authentication mode, so it would be impossible to log out using any SQL execution.
Note that a data store, such as SQL, is only used during the actual authentication authentication phase during the forms life cycle:
forms authentication control flow http://i.msdn.microsoft.com/Aa480476.formsauth(en-us,MSDN.10).gif
Form authentication typically uses client-side cookies to process registered users.
Source: Explanation: Form Authentication in ASP.NET 2.0
For forms authentication you can use:
FormsAuthentication.SignOut(); FormsAuthentication.RedirectToLoginPage();
If you are trying to do this through Windows Authentication, see this .
Source: https://habr.com/ru/post/1338541/More articles:My jar file does not load images - javaCould not find lock section in configuration file associated with this domain - c #Using Selenium: how to change or enter in the HTTP Post Data Header header? - httpASP.net Membership Freelance user (as administrator) - asp.netC for tooltips for <80 char - cReusing code-based UIView versus XIB - iphonehttps://translate.googleusercontent.com/translate_c?depth=1&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1338543/pass-unevaluated-commands-to-a-function-in-r&usg=ALkJrhiuEt5LR6w5MzAE7rEYy2ky3kf2qQHow to access anonymous union / struct member in C ++? - c ++How to get the amount of used memory when running an application - c ++MVVM and role-based security - c #All Articles