php script directory webmaster resources
php scripts
Best Rated
asp scripts
New Scripts
java scripts
Popular Scripts
perl scripts
Advanced Search
   
Home About Us FAQ
Add New Script Edit Script Contact Us
ASP :: User Management



    DMXReady Members Area Manager
         Hits: 43 

DMXReady Members Area Manager offers the easiest way of creating a “members-only” area of your website. Members register and login automatically, so there is no need to “enter them into the system” - DMXReady Members Area Manager takes care of it all! You’ve seen similar, more expensive systems used for online newspapers that ask you to “Please register to read full article…” With this one-stop member sign-up, you control who has access to your web content.



Price: $149.99 - Version: 1.0 - Platform(s): windows
Click Here to Report Bad link.


Listing Details
Visit
 
 
  Visitor Ratings:

    Active Directory Phonebook
         Hits: 35 

The task of updating telephone lists, when people moves to a new office, gets a new phone extension, new mobile number and so on, can be very time consuming. And most of the time it is a job that the is a centralized administration task. With AD PhoneBook, Activedirectory.dk have developed a telephone list, that gets all it's information from Active Directory. AD PhoneBook is a browser based telephone list, that can be used in the company's intranet- or Internet-portal.



Version: 4.2 - Platform(s): windows
Click Here to Report Bad link.


Listing Details
Visit
 
 
  Visitor Ratings:

    Managing leave accrual, easier than ever (leave system)
         Hits: 26 

1.Cost-effective system for tracking leave/sickness-absence/tr avel. Manage all forms of out of office notifications ...2. Tally and Generate quick status report on "Employee out of office" ...3. Highly configurable system to match the processes and rules of your organization ...4. Configurable groups to incorporate different work rules and reporting requirements ...5. Can be integrated into time keeping systems or into payroll systems (hourly consultation rates charged for integration) ...6. Simple user interface …. eliminates need for end-user training ...7. Easy-to-use system administration ...8. Automated notifications ...9. Weeks/Month/Year Interface - Easy for Users to update their records, Easy for Administrators to manage ...10. 3 Months free support



Price: $39.00 - Version: 3.5 - Platform(s): n/a
Click Here to Report Bad link.


Listing Details
Visit
 
 
  Visitor Ratings:

    Lookup Country, Region, State and City by IP Address
         Hits: 18 

IP2Location™ is geolocation service provider that translates IP address to country, region and city. The free script allows you to lookup the country, region and city of the user by using his/her IP address. It can be used in projects such as: <br><br> Developers use this component for projects related to: <br> a) Display native language and currency,<br> b) Redirect based on country,<br> c) Digital rights management, <br> d) Prevent password sharing and abuse of service,<br> e) Reduce credit card fraud,<br> f) Web log stats and analysis,<br> g) Auto-selection of country on forms,<br> h) Filter access from countries you do not do business with,<br> i) Geo-targeting for increased sales and click-throughs,<br> j) Detect spam emails.<br><br&g t; Free sample database download is available. Other informations such as coordinates, ISP and domain name are available.



Price: $199.00 - Version: 2.0 - Platform(s): linux, windows, freebsd, osx, sun
Click Here to Report Bad link.


Listing Details
Visit
 
 
  Visitor Ratings:

    Member Management by Expinion.net
         Hits: 16 

New Version with Payment Gateway! Designed for security & flexibility. Naturally you want to restrict certain pages to ‘members only’, but what if some pages are only for ‘certain groups’ of these members - not ALL members? MMS can do this! ADDITIONAL ADMIN FEATURES: * Customize redirections to specific pages (per member or per group! * Add custom registration fields such as drop-downs, checkbox... * Limit admin access. * Set expiry dates. * Send HTML newsletters, add headers etc. * Customize email content. * Choose email address authentication preference. * Restrict malicious users... USERS (members, clients, staff…) can: * Subscribe to newsletters…or not! * Allow their email address to be published in the members’ area…or not! * Search and sort info for other members (if allowed). * Download files, from a built-in file repository. * Know their info is secure.



Price: $75.00 - Version: 4.0 - Platform(s): windows
Click Here to Report Bad link.


Listing Details
Visit
 
 
  Visitor Ratings:

    D2 Sitelock
         Hits: 27 

D2 sitelock is an ASP based complete user management system.Features include sending a mailout to all your users with one button click, track how many times a single user has accessed your site, export mail lists to CSV for mail merges, maintain your user accounts through an easy to use web interface.



Version: 1.00 - Platform(s): n/a
Click Here to Report Bad link.


Listing Details
Visit
 
 
  Visitor Ratings:

    ASPProtect
         Hits: 2 

ASPProtect is an Advanced User Managment Application with web based screens that allow you to easily manage users and their access. Any pages you want to protect simply need one server side include at the top of the page. Pure ASP solution. Code: ASP 3.0 & VBScriptThis system began 5 years ago as a free download from my old powerasp.com website. It was such a popular download that I decided to make a high end version of it to sell. Since then it has evolved year after year and become better and better through each version. The ASPProtect system has been cloned and copied by many competitors. Rest assured ASPProtect is the real deal and has more time put into it than any of the wannabe systems out there. Do yourself a favor and buy the best solution for password protecting your ASP driven website



Price: $69.95 - Version: 6.x - Platform(s): Windows
Click Here to Report Bad link.


Listing Details
Visit
 
 
  Visitor Ratings:

    AspUser
         Hits: 1 

AspUser is an active server component for managing Windows NT/2000 users, groups and permissions. Designed as a hierarchy of objects and collections, AspUser gives you an intuitive object-oriented programming interface.



Price: 120-$350 - Version: 1.1 - Platform(s): Win NT/2000/XP
Click Here to Report Bad link.


Listing Details
Visit
 
 
  Visitor Ratings:

    Dataaccess layer
         Hits: 1 

Imports SystemImports System.DataImports System.Data.SqlClientImports System.DiagnosticsNamespace DAL Public Class DataAccess Implements IDisposable Private strConnection As String = ConfigurationSettings.AppSettings("conString") Private command As SqlCommand Public Sub New(ByVal sprocName As String, ByVal commandType As CommandType, Optional ByVal parameters As SqlParameter() = Nothing) command = New SqlCommand(sprocName, New SqlConnection(strConnection)) command.CommandType = commandType If Not IsNothing(parameters) Then Dim parameter As SqlParameter For Each parameter In parameters command.Parameters.Add(parameter) Next End If command.Connection.Open() End Sub Public Sub New(ByVal sprocName As String, ByVal parameters As ArrayList) command = New SqlCommand(sprocName, New SqlConnection(strConnection)) command.CommandType = CommandType.StoredProcedure Dim parameter As SqlParameter For Each parameter In parameters command.Parameters.Add(parameter) Next command.Connection.Open() End Sub Public Function runNonQuery_Int() As Int32 If IsDBNull(command) Then Throw New ObjectDisposedException("Object is disposed") End If Dim retVal As Integer = 0 retVal = command.ExecuteNonQuery() Return retVal End Function Public Function runUpadateQuery_Int(Optional ByVal strRetParamName As String = "") As Int32 If IsDBNull(command) Then Throw New ObjectDisposedException("Object is disposed") End If Dim i As Integer i = command.ExecuteNonQuery() If i = 0 Then Return 0 Else If strRetParamName = "" Then Return i Else Return command.Parameters("@" & strRetParamName).Value End If End If End Function Public Function runScalar_Obj() As Object If IsDBNull(command) Then Throw New ObjectDisposedException("Object is disposed") End If Return (command.ExecuteScalar()) End Function Public Function runReader_Rd() As SqlDataReader Dim rdr As SqlDataReader If IsDBNull(command) Then Throw New ObjectDisposedException("Object is disposed") End If rdr = command.ExecuteReader() Return rdr End Function Public Function runAdapter_Dt() As DataTable 'hh If IsDBNull(command) Then Throw New ObjectDisposedException("Object is disposed") End If Dim dataAdapter As SqlDataAdapter Dim dataTable As DataTable dataAdapter = New SqlDataAdapter dataTable = New DataTable dataAdapter.SelectCommand = command dataAdapter.Fill(dataTable) dataAdapter.Dispose() Return dataTable End Function Public Sub Dispose() Implements System.IDisposable.Dispose If Not IsDBNull(command) Then Dim tmpsqlcon As SqlConnection tmpsqlcon = command.Connection Debug.Assert(Not IsDBNull(tmpsqlcon)) command.Dispose() tmpsqlcon.Dispose() End If End Sub End ClassEnd Namespace



Price: Freeware - Version: 1 - Platform(s): Windows
Click Here to Report Bad link.


Listing Details
Visit
 
 
  Visitor Ratings:

    Keyvan1 Advanced Membership(updated)
         Hits: 1 

New features:Dundas,QMail,OCXMail,AspSmartMail support added,email bugs solved,Signup users,confirm by email,user status,high security,sort users, update,delete,add users.block User login by IP.



Price: $50.00 - Version: 2.00 - Platform(s): Windows
Click Here to Report Bad link.


Listing Details
Visit
 
 
  Visitor Ratings:

    User Manager
         Hits: 1 

User Manager 1.0 register users live on your website from a simple registration form and manage them from an simple easy to use web interface from anywhere in the world. Scripted using ASP 3.0 and MS Access.



Price: Freeware - Version: 1.0 - Platform(s): Windows
Click Here to Report Bad link.


Listing Details
Visit
 
 
  Visitor Ratings:

 


Home | About Us | FAQ | Add a Listing | Login | Contact Us | Partners | Getting Rated

php script directory | php email scripts | webmaster resources | php scripts | free web site templates


email marketing | online store software | web file manager | customer support software | knowledge base software
email forms | cheap web hosting | viral marketing software | affiliate software
email hosting | applicant tracking software | php article software

Copyright © 2004 ClickitScripts.com. All rights reserved.