 |
| |
 |
User Management Scripts |
|
| |
ScriptWings.com ASP Scripts User Management Scripts
Click "Subscribe" if you want to be notified of new or updated links in this category. Subscribe
Total : 12
Easily add password protection to an entire website supporting Active Server Pages.
Price: Free - $69.95 - Version: - - Platform(s): Win NT
Added: 31/10/2006 - Updated: 31/10/2006
Review It - Rate It - Member Reviews:  Visitor Ratings:  (0 Votes)
ASP Login is Windows compatible. The ASP Login script is a simple script that allows you to create a password protected area off your web site for either a members area or to protect pages that you don't want others to have access too. The script uses a password protected Access Database to store the names of users so you can have as many users as you like as long as they have different user names.
Price: Freeware - Version: 1.5.6 - Platform(s): Windows
Added: 31/10/2006 - Updated: 31/10/2006
Review It - Rate It - Member Reviews:  Visitor Ratings:  (0 Votes)
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
Added: 31/10/2006 - Updated: 31/10/2006
Review It - Rate It - Member Reviews:  Visitor Ratings:  (0 Votes)
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
Added: 31/10/2006 - Updated: 31/10/2006
Review It - Rate It - Member Reviews:  Visitor Ratings:  (0 Votes)
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
Added: 31/10/2006 - Updated: 31/10/2006
Review It - Rate It - Member Reviews:  Visitor Ratings:  (0 Votes)
|
ScriptWings.com ASP Scripts User Management Scripts
|
|
 |
 |
[ 1 ] 2 3 Page of 3 Previous | Next |
| |
|
|
|