Concurrent one session for the user logged in the web applicationHow to clear out session on log outASP.NET Web Site or ASP.NET Web Application?How to prevent a user from having multiple instances of the Same Web applicationReplacing .NET WebBrowser control with a better browser, like Chrome?Sending cookies from C# Application to an Internet Explorer pop-up windowPassing session data between ASP.NET web applicationsForcibly logout all other sessions in case of multiple login by same userLogin User To Web Application if User Logged In in Dekstop ApplicationGetting the current logged in user in asp.net web applicationForce Session Expires when login with same credential in another web browser
How to check status of Wi-Fi adapter through command line?
Updating multiple vector points at once with vertex editor in QGIS?
Sum of Infinite series with a Geometric series in multiply
When do we use "no women" instead of "no woman"?
How could reincarnation magic be limited to prevent overuse?
Does secure hashing imply secure symmetric encryption?
Why is k-means used for non normally distributed data?
garage light with two hots and one neutral
Why does dough containing a small amount of terumah become exempt from challah?
Map a function that takes arguments in different levels of a list
Is it rude to ask my opponent to resign an online game when they have a lost endgame?
How do you get the angle of the lid from the CLI?
Can an intercepting fighter jet force a small propeller aircraft down without completely destroying it?
Can my UK debt be collected because I have to return to US?
What percentage of the mass/energy of the universe is in the form of electromagnetic waves?
Some questions about Lightning and Tor
How can I design a magically-induced coma?
IEEE Registration Authority mac prefix
Are manifolds admitting a circle foliation covered by manifolds with a (non-trivial) circle action?
One hour 10 min layover in Newark; International -> Domestic connection. Enough time to clear customs?
'Hard work never hurt anyone' Why not 'hurts'?
What is a "fat pointer" in Rust?
Why would a Intel 8080 chip be destroyed if +12 V is connected before -5 V?
Are there any writings by blinded and/or exiled Byzantine emperors?
Concurrent one session for the user logged in the web application
How to clear out session on log outASP.NET Web Site or ASP.NET Web Application?How to prevent a user from having multiple instances of the Same Web applicationReplacing .NET WebBrowser control with a better browser, like Chrome?Sending cookies from C# Application to an Internet Explorer pop-up windowPassing session data between ASP.NET web applicationsForcibly logout all other sessions in case of multiple login by same userLogin User To Web Application if User Logged In in Dekstop ApplicationGetting the current logged in user in asp.net web applicationForce Session Expires when login with same credential in another web browser
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am trying to implement only one current session for the user that logged in to my web application. When the user logged in again by another browser, the system could check that there is current session already logged in the system and will pop up a dialog box to ask user to kill previous session and start new one. It was because it is implemented in a school, the authentication system is using central authentication server, that make things more complicated.
c# asp.net webforms .net-framework-version
add a comment |
I am trying to implement only one current session for the user that logged in to my web application. When the user logged in again by another browser, the system could check that there is current session already logged in the system and will pop up a dialog box to ask user to kill previous session and start new one. It was because it is implemented in a school, the authentication system is using central authentication server, that make things more complicated.
c# asp.net webforms .net-framework-version
Sounds good. What have you tried so far?
– Gagan Deep
Mar 28 at 5:21
add a comment |
I am trying to implement only one current session for the user that logged in to my web application. When the user logged in again by another browser, the system could check that there is current session already logged in the system and will pop up a dialog box to ask user to kill previous session and start new one. It was because it is implemented in a school, the authentication system is using central authentication server, that make things more complicated.
c# asp.net webforms .net-framework-version
I am trying to implement only one current session for the user that logged in to my web application. When the user logged in again by another browser, the system could check that there is current session already logged in the system and will pop up a dialog box to ask user to kill previous session and start new one. It was because it is implemented in a school, the authentication system is using central authentication server, that make things more complicated.
c# asp.net webforms .net-framework-version
c# asp.net webforms .net-framework-version
asked Mar 28 at 1:48
Tsang Wang KeiTsang Wang Kei
1
1
Sounds good. What have you tried so far?
– Gagan Deep
Mar 28 at 5:21
add a comment |
Sounds good. What have you tried so far?
– Gagan Deep
Mar 28 at 5:21
Sounds good. What have you tried so far?
– Gagan Deep
Mar 28 at 5:21
Sounds good. What have you tried so far?
– Gagan Deep
Mar 28 at 5:21
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55389005%2fconcurrent-one-session-for-the-user-logged-in-the-web-application%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55389005%2fconcurrent-one-session-for-the-user-logged-in-the-web-application%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Sounds good. What have you tried so far?
– Gagan Deep
Mar 28 at 5:21