Display Active Members Online

I tried searching for it but didn't find anything. Once my members log in, I want to display their names in a reserved section on the page. I was wondering what is the best way to display "who" is online.

I was going to add their names to an "online" table in my database when they logged in. But how would I remove them if they didn't log out. How do I remove their names if the session variables timeout or they close the browser without clicking the log out link. I am also open to other techniques.

View Replies


ADVERTISEMENT

Display All Active Inventory

our cart is comersus system db is ms sql.I am sure I will have to create a new page. I am BRAND new to asp. I have been doing vb for desktop. Please help or refer me to a link for details.

View Replies View Related

Display Online User Id

I have problem with displaying online user id. What I did is to have a table to store user id each time they login. When user click logout, the system will delete that user id using his session user id. The problem is if the user didn't click logout, that user id in the db will not be deleted. How do I fix this problem?

View Replies View Related

Display Online Users And Last Logins

I need to display the # of online users on my system, as well as the 10 users that last logged in at that moment....How would I do this? Im sorry if question is vague but I've never done this before and I've no idea how to do it. Will I be needing an application variable? Do I have to use it on a global.asa file?

View Replies View Related

Filter Members

I want to dynamicaly filter the members in my pivottable.
Here you see how it's done the static way:

pview.RowAxis.InsertFieldSet pview.FieldSets("manager)
Set fld = pview.FieldSets("manager").Fields(0)
fld.FilterFunction = c.plFilterFunctionInclude
fld.FilterMembers = Array("ZWAENEPOEL Geert","VAN COILLIE Caroline")

but I receive the selected members from another page, they are all in
the field 'selectedmembers', so I tried this:

fld.FilterMembers = Array(selectedmembers.value)

View Replies View Related

Group Members

I have a asp page that I need to check to see if the current logged on user is a member of a specific active directory group. How can I do this?

I have tried so many different LDAP code examples and none seem to work. Do I need to include a administrator username and password in the code? Does any have any samples of code I can try?

View Replies View Related

Sorting Members

Am a complete newbie at ASP, I currently have a site which has a MySQL backend database, users can apply to join and then once joined they can edit there information. I can login using a username/password senario.

From there I can see all users currently active, and whom I am waiting to join. I can also search the users Birthdays that are coming up and delete users. Pretty straight forward. I want to be able to see the last 5 users who logged on? Anyone know how to do this or if it's fairly complicated?

View Replies View Related

Edit Members Page

I have a members page on my site and want to give the members a way to edit there own pages (either just text or images as well) so they can log into there own members page and then edit text boxes to complete the required info.

May be if you see a page you will understand what I want to do.

Members Page

I want to let the members edit the orange text and the small bit of white text on the right.

View Replies View Related

ASP - Members Area Via Paypal?

I would like to create a member's area on my ASP/Access web site but members must pay an annual subscription fee via Paypal to access this member's area.

Unfortunately, the Hosting provider does not support a Unix system, so i cant store all my members area information in a password protected folder.

Please could anyone advise me the best way to do this?

I already have a merchant account set up with Paypal.

I need to give every member an individual UserID and Password, and restict access to the members files, so visitors cant access them directly via the Browser Bar and by-pass the Paypal fee.

I would also like an automated service, so if a member does not renew their subscription, they will not be able to access the member's area once a year has passed.

View Replies View Related

Stripping Quotes From All Members Of An Array.

I need to make a function that takes Request.QueryString elements and strips all single quotes from the input.

function StripQuotes(array)
dim StripQuotes
for each old in array
new = replace quotes (old)
Add new to StripQuotes
next
return StripQuotes
end function

View Replies View Related

Email Blasts To Registered Members On A Site

I am trying to send out email blasts to over 6000 users of a website (Not Spam) However when I try it with the following script, it crashes at times and sends it through at times. I need a more reliable way of sending out emails to a large number and this is the mail feature of the website. There will be users trying to send out mails at the same time. Code:

View Replies View Related

Asp/active

i was looking into using active directory to authenticate users, how is this done? what is required to connect to active directory?
What is can you pull from active directory with asp?

View Replies View Related

Active X

I have a pretty resource intensive javascript page that I would like to try to make into an Active X program. I'm a PHP programmer and don't know much about ASP, but the research I've found is talking about using ASPX to create the application. Can anyone offer any suggestions about creating something like this, whether or not PHP can be implemented and where to start. My intention is to have my program be embedded into the browser.
**Originally posted in the PHP forumns, I assume a moderator moved it to the ASP forum. Now that we're here, a few questions
Do I need a different server configuration to run ASP? I'm currently running apache 2.0. An example of an ActiveX program I'm thinking of can be found on webshots.com. This site uses an ActiveX program to allow users to upload images through their custom application. It has functionality similair to that of some flash I've seen.

View Replies View Related

ASP Active Directory

I'm trying to connect to the active directory using asp. I'm having problems with logging in, what happens is the username accepted is not the user logon name but the displayname is accpeted heres the code:

View Replies View Related

Active Content?

What is "active content"? My ASP page just returns HTML....

I have a page with an .htm extension that has a form whose action
is an ASP page which generates a report after updating a database
with the form data.

Under Windowx XP SP2 the IE6 "Information Bar" has the message:

"To help protect your security, Internet Explorer has restricted this
file from showing active content that could access your computer."

View Replies View Related

ASP & Active Directory

Could anyone show me a sample, snippet, code chunk ... etc of how I can get ASP to find the Active Directory username based on a supplied email address?

For example: I want ASP to query active directory and retrieve the AD username for where user email address = 'whatever@whatever.com'

View Replies View Related

Active User IP's

I just made a simple thing on my page that says Active Users: and the number by adding 1 to session_onstart in global.asa. It seems to work.
Is there a way I can have this store IP's of the active user, etc without using a database to store the stuff in?

View Replies View Related

Active Control

My problem is my active control will download to IE6 sp2, but not download
to IE6 sp1. On IE6 sp1, ther is no popup to ask for download.

View Replies View Related

Active FT/PT Employees

The count in my sql statement calculates a count of FT Active employees and a count of PT Active employees. Now I need a total sum of those two. Is there any possible way of putting a sum in the SQL statement?

sqlActiveEmployees = "select employee_type, case when employee_type = '" & EMPLOYMENT_STATUS_FULLTIME & "' then 'Full-Time' else 'Part-Time' end, count(*) from EMPLOYEE_CLIENT where status = " & EMPLOYEE_STATISTIC_ACTIVE & " and client_id NOT IN " & TLC_CLIENT_IDS & " group by employee_type order by employee_type"

I write it out to this code:

For intCount = 0 to uBound(arrActiveEmployees,2) intTotalEmployees = intTotalEmployees + (nullToZero(arrActiveEmployees(1,intCount)) + (nullToZero(arrActiveEmployees(2,intCount)))) Response.Write "" & arrActiveEmployees(1,intCount) & ": " Response.Write arrActiveEmployees(2,intCount) & "" Nex

View Replies View Related

Active Desktop

I was thinking about using active desktop, asp, and IIS on my win 2k pro computer to setup a personalized interactive desktop. Has anyone ever done this before? If so do you have a screen shot or maybe some hints/information I could use? I've been searching google. From what I can figure all I have to do is program a webpage that looks and works the way I want. Then just tell active desktop to use it as the home page.

View Replies View Related

ASP To Active Directory

I would like to write an ASP ap that asks for username/password and
validates against the active directory. Any ideas how/where I can do this?
In addition, once these people are logged in I want to be able to send the
to exchange's OWA and just be logged in, no second login/password.

View Replies View Related

Asp And Active Directory

Is there anyway that I can add user to the active directory with asp?

Because I found one code to view information but not to add. Or if you can tell me where to see the command for asp and active Directory.

View Replies View Related

Active Server

I've to startup a server ho housing a E-commerce asp. My S.o. is an OpenBSD Ver 4.2 and i am in panic ....

View Replies View Related

An Active Link

I'm looking for a function into which I can pass a string, and have it activate any links within that string.Does anyone know of such a thing?

View Replies View Related

Active Users

I need to display information a list of Active users on a web site.I can do the count using the global.asa but need to display individual information about each "active user" without writing it all to a database and then pulling it out again.Info I need :

IP Address - Request.ServerVariables("REMOTE_HOST")
The page they are on - Request.ServerVariables("SCRIPT_NAME")
the page they were on - Request.ServerVariables("HTTP_REFERER")

Can I write this stuff into sessions and call them all out?

View Replies View Related

Active Connections

I am programming a rather large site which will hopefully attract thousands of visits per day. I have been told by other people that MS access begins to struggle once it has about 15 active connections.

Since I am currently using MsAccess to test my scripts along with IIS 5.0 or whatever it is, I guess that at some stage I am going to have to convert all my stuff so that the data is in an SQLServer Database, and that the scripts can read and write to it. could anyone tell me what the transition is like. should I consider using SQL Server from the beginning or will I just have to change a few lines on each page.

View Replies View Related

Active Users

I'm developing an online shopping cart. Usually the site administrator modifies products etc in the "Store". I want a mechanism for the administrator such that he should be
able to view or at-least count the customers or visitors in my "Store" (only in store), users of the other sections should not be counted.

Whenever a user in my store signs out or closes the browser (not properly sign out) or even leaves the "Store" the count should decrement.

View Replies View Related

ASP & Active Directory

I would like to check login credentials, ie username and password, from Active Directory via an asp page. This will allow users to login to a restricted area of the website using their windows login and password. I read a thread about it on here, but it just said that it was possible, it didn't say how it was possible.

View Replies View Related

ASP And Active Directory

Is there something that would let me integrate ASP with Active Directory? I have seen a basic ones where it will allow you to create a login page. I am actually looking for something that will allow ASP to check user authentication but also be able to do such things as check which groups the person is in and allow them into certain pages according to their groups.

View Replies View Related

ASP Active Directory

We want to be able to allow our users to update this AD profile and
sepecifically be able to change the address, city and phone number fields
thorough a web page.

View Replies View Related

Active Users

I have a login page, wherein the users login to our system. I want to know the number of users that are currently logged in to the system.

View Replies View Related

Emails From Active Directory

I would like users on a web application to be able to select users from active directory and use their email address - in much the same way as Outlook does. How hard is this to do in asp? Would it be easier to do in .net?

I am proficient in asp but have never done this, on the other hand, I am starting to develop my .net skills.

View Replies View Related

Built In Active X Components?

I've been playing with ASP for about 3 months, and it just now, today, clicked that I could be using active x stuff with my asp pages.

The stuff I make falls into two categories, stuff for inhouse, and stuff that's on brinkster.

How can I tell what active x components I can use, and find some docs on them?

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved