Ways to prevent users from logging on multiple times in ASP.

Source: Internet
Author: User

In Web development , some systems require the same user to log on only once at the same time, that is, if a user is logged in, if you log in again before exiting, you need to error.

A common way to do this is to determine if the user is already present in the application when the user logs in, and if there is an error, it is added to the application if it does not exist (application is common to all sessions, A unique object for the entire Web application):

string strUserID = Txtuser.text;
ArrayList list = Application.get ("Global_user_list") as ArrayList;
if (list = = null)
{
List = new ArrayList ();
}
for (int i = 0; i < list. Count; i++)
{
if (strUserID = = (List[i] As String))
{
Already logged in, prompting for an error message
Lblerror.text = "This user is logged in";
Return
}
}
List. ADD (strUserID);
Application.add ("Global_user_list", LIST);

Of course, it is also possible to save it using the cache.

The next step is to remove the user from application when the user exits, and we can handle it in the Global.asax Session_End event:

void Session_End (object sender, EventArgs e)
{
The code that runs at the end of the session.
Note: Only the sessionstate mode in the Web. config file is set to
InProc, the Session_End event is not raised. If the session mode is set to StateServer
or SQL Server, the event is not raised.
String strUserID = session["Session_user"] as String;
ArrayList list = Application.get ("Global_user_list") as ArrayList;
if (strUserID! = NULL && list! = null)


{
List. Remove (strUserID);
Application.add ("Global_user_list", LIST);
}
}

There is no problem, the problem is that when the user directly click the Close button in the upper right corner of the browser, there is a problem. Because it is closed directly, it will not immediately trigger the session expiration event, that is, close the browser and then login to log in.

  There are two ways to handle this:

1, using JavaScript method

Add a piece of JavaScript code to each page:

function Window.onbeforeunload ()
{
if (Event.clientx>document.body.clientwidth && event.clienty<0| | Event.altkey) {
window.open ("logout.aspx");
}
}

Because the onbeforeunload method will be executed when the browser is closed, refreshed, and page-reversed, it is necessary to determine whether the Close button is clicked or the ALT+F4 is pressed to perform a real shutdown operation.

Then write and session_end the same method in the Logout.aspx Page_Load, adding the event in logout.aspx: onload= "Javascript:window.close ()"

However, there is still a problem, JavaScript may behave differently in different browsers, and it is not judged when it is closed by file.

2, using the XMLHTTP method (this method test down no problem)

Add the following JavaScript to each page (these javascript can also be written in common, each page is introduced)

var x=0;
function Myrefresh ()
{
var HttpRequest = new ActiveXObject ("Microsoft.XMLHTTP");
Httprequest.open ("GET", "test.aspx", false);
Httprequest.send (NULL);
x + +;
if (x<60)//60 times, that is, the session real expiration time is 30 minutes
{
SetTimeout ("Myrefresh ()", 30*1000); 30 seconds
}
}
Myrefresh ();

Ways to prevent users from logging on multiple times in ASP.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.