Web Forms :: Show If User Is Offline Or Online?
Jul 29, 2010
I'm making a forum.
I need to show if a user is Offline or Online.
Like this:
Where is says Online i need it to say Offline when the user if offline.
Okay, now i think i got explained what i would like to do.
How i would like this to work:
When a user logs in i want his status to change to Online.When the user press Log Out i want the status to go Offline.
When the user haven't been active for 10 minutes i want the status to change to Offline, but he is still logged in.If he clicks on something he's active again, so i want the status to go to Online again.If the user browse away from the site or close the browser/site i want it to go to Offline status again.
View 3 Replies
Similar Messages:
Nov 25, 2013
I am working on a web project, and here i want to display a label which will display how many user is online and open this site. What can i do
View 1 Replies
May 5, 2010
me how create offline and on line application.like..
I need create an app.net application.This should works with or with out internet.
Here main requirement is some user will connects to internet and get data to local system.then whey will work on offline.Finally need update server all users updates to server.
so here..
1. user will connect to internet every morning at that time we need to synchorize local database from server database.
2.next user will do some operataions like adding some records or updating some records from his local database using application.
3.Finally end of the day we need to synchronize his local database with server.
View 3 Replies
May 29, 2010
i want to display the message for my website if its under maintenance or temp. closed for any updates
[IMG]http://i49.tinypic.com/a4omkg.jpg[/IMG]
how i can do that so that all user's can see that messages and all the link's should not work for that time interval
but the Maintenance staff and their id should be able to make changes and see
if anyone has any idea about this one please tell me how to do this in asp.net because this same thing can be done in any cms s/w
Language-ASP.NET C#
View 6 Replies
Jan 6, 2011
I want to develop a utility where user will insert new Records and also the same application should work if user is not connected with internet.When user wants to submit records only that time he required to connect internet.
We have created one sample application using excel where we use Dropdown, Textbox, Label.User will download excel file from website and filled up details. When user wants to submit all details only that time internet is required. Application will insert value from excel file to server using WebServices when user click on submit button.
Above is working file but it's increasing our work because we are creating website and also Excel project (Almost double work). I want something where we can utilize the code for online and offline application.
View 1 Replies
May 7, 2015
How to add image with all the ListBox items.Ex: I want to add a "green" circle icon image in front of all the items of ListBox.to to show the status of items in listbox.How to achieve it
View 1 Replies
May 7, 2015
How to Display online users as green and offline as grey using real time updates..
View 1 Replies
Feb 3, 2011
I want to merge a software with a website.I have no source code of software, but i want to the database of online data and offline data will automatically synchronize. I have only control over website, online database and offline database.. Is it possible, if yes how?
[code]....
but when i feed data in offline database, online database automatically updated.
View 5 Replies
Aug 15, 2010
i have problem in connection strin i host my site and database is in DATA DIRECTORY my site run successfully in offline but an error of connection string in online pls give me an example of string for online i use asp.net, C# and sqlserver 2005
View 8 Replies
Apr 15, 2010
I'm using a global.asax and i would like to know how to show a list of users on-line and maybe who has been on-line too .
I know how to show a number of users on-line now i would like to show they names too.
View 11 Replies
Aug 19, 2010
I am trying to save and show the image online. i save the image like this:
[Code]....
The problem is it is not throwing any error but it is not showing the image in the Image1 either. What can be the reason for this and how to get the image ?
View 3 Replies
May 7, 2015
i want to know online user in my web site.
View 1 Replies
Feb 5, 2011
I am looking for a way to distroy the ASP.net membership session for a specific user. The reason I am doing this is as an admin I want to delete a user. This works fine, but if the user already has an active session, he is still marked as "online" until this session dies (I verify each time by using Current.User.Identity.IsAuthenticated). How do I go about killing a session based on the user it's authorized as. This way when I do Memberships.DeleteUser(username) I can also do Sessions.KillByUser(username)[URL]
View 2 Replies
Mar 11, 2010
I m developing online examination website.
I want to show remaining time during examination without java script code.
I tried that by adding 10 minuts in starting time of examination and then continuously subtracting current time from that added time.
I m using label to show time . But it gives conversion error.
View 1 Replies
May 6, 2010
Im using Visual Web Developer 2010 , ASP.NET and VB
Im using the "ASPNETDB.MDF" database for membership and others ,
1-- i created a gridview in my masterpage
2-- Connected to to " ASPNETDB.MDF" and "asp_Users Table"
3 -- Selected all
4-- My Select the Field "UserName"
Now im trying to get the On-line Users .
Im having a problem , becouse i can't see it when i debug the page, i changed the font , background color , i havent got any erros , what i need to do ?
View 4 Replies
Jun 9, 2010
what I need to know is how to show a count of how many users are signed on with a custom sql script, here is what i got that shows total users but not total online
[Code]....
Again this gives a total count but i need a total count of who is online with this setting, and try to keep it in sql statement if possible as i have not yet learned how to use stored procedures.
View 23 Replies
Sep 17, 2012
how to display that the user is online(Maybe By A Green Light Image) without using Asp.Net Membership,
View 1 Replies
Jun 1, 2012
In my web application.... I want chat with all the user are online. How to get the user and how to chat with each other .... I want to integrate chatting option in my website.
View 1 Replies
May 7, 2015
I have below code to display "list of all the online users" inside listBox using Membership function.
Code:
protected void Page_Load(object sender, EventArgs e) {
if (!IsPostBack) {
MembershipUserCollection allUser = Membership.GetAllUsers(); // to get all the users
List<MembershipUser> onlineUsers = new List<MembershipUser>(); //creating list of online users
foreach (MembershipUser user in allUser)
[Code] ....
I want to remove that user from the list of online users, who himself has logged in. Example: if I had logged-in with UserName: Admin, then this Admin should not show to me in the list of "online users"
Tried below Code but not working:
protected void Page_Load(object sender, EventArgs e) {
if (!IsPostBack) {
MembershipUserCollection allUser = Membership.GetAllUsers(); // to get all the users
List<MembershipUser> onlineUsers = new List<MembershipUser>(); //creating list of online users
MembershipUser m_user = Membership.GetUser(); //to get self logged-in user
[Code] ....
View 1 Replies
Feb 28, 2010
what is the logic behind this on this website "last activity: 1 min ago from this ip address " If you are obtaining the user's IP address in a hidden field , how can I do this in vb.net ?
And how can I check how many users are online using the application ?
View 3 Replies
Jun 10, 2010
In my project i have to implement an interface which shows whether a particular user is online or not as in social networking site(like orkut and facebook)
View 3 Replies
Apr 3, 2010
How to measure the max available online user amount per second for a web app using asp.net?
Is there any tool to measure that?
I am looking for load testing, to find out how many users my app can handle.
Is there any recommended load testing tool?
View 1 Replies
Aug 4, 2010
I am using SQL membership authentication and SQL Database for my ASP.NET Website and its using for my Organization (has multiple Branches in different cities).How I can get all user list which are recently online/Login in my system (WebSite) in my Admin Panel?
View 4 Replies
Feb 22, 2011
i have using aspnet DataBase, and i know that i can Check if the User is OnLine or not By Using
Membership.GetUser.isOnLine; this is when invoke method in asp.net Page , But i want to Know if there is another way to Check If the User OnLine or Notfrom aspnet dataBase
View 4 Replies
Nov 16, 2010
count user online when opening the asp.net website.
View 4 Replies