Most Popular Scripts | ASP | Tutorials & Tips
Displaying Dates and Times with ASP
posted bySteve FrazierinDate & Time
There are various ways to display Dates and Times. You can display the Date in the standard MM/DD/YYYY or with the name of the day and month. You can display the Date with the Time or the Time all by itself. You can also abbreviate the name of the Day or display the Time in either 24 hour or 12 hour format. This article will show you the basics of how it is done.
Reviews0
PriceFree
Views2045
Displaying the Current Date and Time
posted bytutorializerinDate & Time
In this tutorial you will learn how to post on a web page using ASP programing the date & time. This tutorial is for beginers and explains in a very simple method how to display the date & time.
Reviews0
PriceFree
Views1436
Dynamic Date Menu
posted bySteve FrazierinDate & Time
This article will explain how to Dynamically populate a dropdown menu of days dependent om the Month selected. We will be using Javascript and ASP in this article.
Reviews0
PriceFree
Views1720
Delete Duplicates from a Database (MYSQL, MSSQL)
posted byCarlCoxehinDatabase-related
An easy way to delete duplicate data from a database such as MYSQL or MSSQL.
Reviews0
PriceFree
Views1918
AppendToLog in response object
posted bydevtutorialsinIntroduction to ASP
There are many magic methods in response object. With AppendToLog method you can access and write your message to ISS logs. This could be very usefull if you wish to create custom messages in log files. But there is greate limitation of this method which can write maximum 80 characters and can not contains commas. Because log files are comma-delineated files and informations are splitting with commas.
Reviews0
PriceFree
Views921
Storing and retrieving variables from application object
posted bydevtutorialsinIntroduction to ASP
In this tutorial, we will take a look at Application Object. When you've used Application Object, all ASP pages can store and retrieve information. The information in Application Object stored in server and all ASP pages can access the information. The main diffrences between Session Object and Application Object is Application Object stores information in server memory.
Reviews0
PriceFree
Views899
Retrieving Column Names with values
posted bydevtutorialsinDatabase-related
This tutorials based on a bit of knowledge on SQL. Sample code displays us how to get and show name of columns with values.
Reviews0
PriceFree
Views1149
Counting lines in text files
posted bydevtutorialsinFile Manipulation
In this sample ASP code, we will read and count the lines in a text file. This study uses FileSystem Object and readline method.
Reviews0
PriceFree
Views1149
Creating Color Chooser using ASP
posted byjawahar_prasadinMiscellaneous
Create good looking color chooser for your site. Let the users select the color that they require.
Reviews0
PriceFree
Views1166
Authenticating members in ASP against Access Database
posted bynaingwoninUser Authentication
In this tutorial, I will show you how to implement user authentication in ASP by using an Access Database. We will need a Microsoft Access Database and some ASP code. ASP code wll be used to access to database and valide member information. The database is for storing authorized member information.
First, we need to create an Access Database table in which we will store the username and password of the authorized user. But, we will first create a directory under IIS where we will store our files. Create a directory under C:Inetpubwwwroot and name it as ''members''.
Reviews0
PriceFree
Views3458
Creating a Guest Book in ASP using MS Access with DSN Less Connection
posted bynaingwoninGuestbooks
All the codes in this article are explained in simple and step by step manner. At the end of this tutorial, you will be able to create a guestbook for your website.
Reviews0
PriceFree
Views3939
Make database access safer with transactions
posted bytanvirbuttinDatabase-related
You can use transactions in ASP as a kind of insurance policy for your database activities, making them safer and providing better error recovery. Transactions are most useful when doing multiple actions on multiple tables. The example below shows just how easy it is to use transactions from ASP, inserting a record into a table and doing a "rollback" if there's a problem.
Reviews0
PriceFree
Views1541
Creating Text files on server
posted byinfoinFile Manipulation
In VBScript language there is no any function for Input/Output on hard disk. But you may use FileSystem Object to create and edit files on server. This is an indirect technics to create any file on server.
Reviews0
PriceFree
Views1830
Response.Redirect Usage
posted byinfoinIntroduction to ASP
Response.redirect is used to move any request form client to another page. This is most common usage to tell browser to get another page and to redirect any request to other source.
Reviews0
PriceFree
Views2009
Introduction to Built-in Objects in ASP Pages
posted byheronginIntroduction to ASP
This tutorial helps you understand: How ASP server presents the programming environment to ASP pages with a number of run-time objects. Basic properties and methods of run-time objects: request, response, server, application, and session.
Reviews0
PriceFree
Views1058
Cookies Basics
posted bybouvilloninCookies & Sessions
A cookie is a message given to a Web browser by a Web server. The main purpose of cookies is to identify users and possibly prepare customized Web pages for them. This article explains benefits of using cookies and shows how to create and retrieve them. Dictionary cookies are also explained.
Reviews0
PriceFree
Views1369
ASP Looping Statements
posted bybouvilloninIntroduction to ASP
ASP performs several types of repetitive operations, called "looping". Loops are set of instructions used to repeat the same block of code till a specified condition returns false or true depending on how you need it. This tutorial shows the basic idea on how to use looping statements in ASP, along with examples, and descriptions of the examples.
Reviews0
PriceFree
Views1407
Complete E-mail Address Validation
posted byByteMyCodeinEmail Systems
If you use this code, with the changes suggested in the comments, you will be able to completely validate a submitted e-mail address. It checks for invalid characters, an invalid domain, and an invalid or missing MX record at the domain.
Reviews0
PriceFree
Views1676
Disply Number of Unique Visitors Currently on Site
posted byByteMyCodeinCounters
By implementing this code on your site, you can display the number of visitors that are currently browsing your site. It increments a counter every time that a unique session begins on your site and decrements a counter every time that a session ends.
Reviews0
PriceFree
Views1768
Using Object in ASP
posted byinfoinIntroduction to ASP
To use an object in ASP, you should create an instance of an object. We use 'CreateObject method' creating object. Let's see it on an real application. .
Reviews0
PriceFree
Views1311