GMAIL Quick Contacts
-
Hi I want if any one of my group is online his name should appear in green color. It’s something like GMAIL Quick Contacts. Please help me with some idea. I am using asp.net 2005. Regard’s Smruti
-
Hi I want if any one of my group is online his name should appear in green color. It’s something like GMAIL Quick Contacts. Please help me with some idea. I am using asp.net 2005. Regard’s Smruti
Obviously, if yuo're using ASP.NET, and you want this to happen in something resembling real time, you need to have an ajax callback every second or so, or you need to write a control you embed in your web page. If you just want to see it on postback, then the only question that needs to be answered is, what defines 'online', and how do you detect it ? GMail doesn't detect that people are online, it detects that they have gmail open. If you want to just detect that someone is on the web, regardless of using any program or website, and they don't have a static IP, then you're out of luck.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
Obviously, if yuo're using ASP.NET, and you want this to happen in something resembling real time, you need to have an ajax callback every second or so, or you need to write a control you embed in your web page. If you just want to see it on postback, then the only question that needs to be answered is, what defines 'online', and how do you detect it ? GMail doesn't detect that people are online, it detects that they have gmail open. If you want to just detect that someone is on the web, regardless of using any program or website, and they don't have a static IP, then you're out of luck.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
Thanks Christian, I want something like that only. I have a portal where I have save some user id. I want if any one login he should visible to me. Is it wise to send request to server every time? Regards Smruti