New Scripts | ASP | Tutorials & Tips
Uploading files to the server hard disk using plain ASP
posted byfaisalinFile Manipulation
Step-by-step tutorial on how to upload files (images, etc) from the client browser to the server hard disk using plain ASP pages. Complete application source code is available for download including the code to upload and display uploaded files to the user in an eary to use and understand manner.
Reviews1
PriceFree
Views8373
Creating Cookies With ASP
posted byderekinCookies & Sessions
No matter how you feel about cookies, good bad or indifferent, they are an integral part of many webs. Why not unlock the mystery and write your own? Here's a quick rundown on this.
Reviews1
PriceFree
Views3876
Simple Text Counter
This example is a simple text based counter that will only show page views, not actual visitors. It uses the File Scripting Object to interact with a text file. It first reads the current number in the file and adds one to it, then displays it as text on the page.
Reviews0
PriceFree
Views2942
Arrays in plain English
posted byderekinDevelopment
There are many ways to use arrays. This page shows a couple of quick examples for using arrays in ASP.
Reviews0
PriceFree
Views2170
Query String Example
posted byderekinDevelopment
A short tip on passing info between pages via a query string.
Reviews0
PriceFree
Views3501
Playing With Times
posted byderekinDate & Time
There are several different ways of displaying times. Using FormatDateTime and DatePart functions we can manipulate the time in many different ways.
Reviews0
PriceFree
Views3076
If ElseIf End If Example
posted byderekinDevelopment
Many times we need to perform an action or display something different based on some different parameters. Using If ElseIf End If is one such way to do this.
Reviews0
PriceFree
Views2441
Playing With Dates
posted byderekinDate & Time
There are several different ways of displaying dates. You can also add and subtract from them as well. Using the FormatDateTime function we can display dates in any manner.
Reviews0
PriceFree
Views4844
Select Case Example
posted byderekinDevelopment
Many times we need to perform an action or display something different based on some different parameters. Using select case is one such way to do this.
Reviews0
PriceFree
Views3183
Math functions
posted bywebmasterinDevelopment
Usage of the following math functions are shown: Abs(), Atn(), Cos(), Exp(), Fix(), Hex(), Int(), Log(), Oct(), Round(), Sgn(), Sin(), Sqr(), Tan().
Reviews0
PriceFree
Views2182
Create XML Documents from Access Output
The author writes "Active Server Pages allow for the easy ability to create dynamic views of your data on a web server, but you can also create "static" documents on the server. This can be particularly useful if you wish to distribute your information on CD or in virtually any document form. This sample example will utilize a US state info db. After reading the contents of the db instead of writing output to the browser html text is written to the server on a file with the .xml file extension. By placing appropriate XML tags around the Db output the XML document that is created on the server than can be read by the browser or any appropriate means."
Reviews0
PriceFree
Views3713
Access ASP Application object from a remote script
posted byinfoinMiscellaneous
Basic idea and full source code to remote access contents of ASP Application object from a remote script. Lets you read, write and enumerate application dictionary from the remote script (WSH, remote ASP/IIS server) or application.
Reviews0
PriceFree
Views1826
SQL In Simple English - Part II
posted byfaisalinDatabase-related
This is the second article in this series. This article mainly deals with SQL Joins and SQL sub-queries. Both of these are extremely useful SQL constructs and should be learnt by all beginners.
Reviews0
PriceFree
Views1817
Basic Forms
posted byaspinForm Processing
Handling forms and processing the data you get from them is one of the fundamentals that need to be mastered if you are to develop a dynamic site. This is a very simple introductory tutorial on form handling.
Reviews0
PriceFree
Views5093
If Then Else
posted byaspinIntroduction to ASP
If you try to do any ASP programming, it won't be long before you need the If...then statement. This very simple tutorial talks you through the syntax used and shows you how can use it.
Reviews0
PriceFree
Views3074
Access remote URLs with asp
posted bywebmasterinWeb Fetching
This tutorial will show you how to use XMLHTTP Object to request a page to a remote address from your server. Some copy and paste examples are included in the tutorial.
Reviews0
PriceFree
Views3044
Professional C# 2nd Edition : Data Access with .NET.
posted byfaisalinDatabase-related
Complete Online Chapter "Data Access with .NET" from Wrox Press book "Professional C# 2nd Edition". Topics covered include "Connecting to the database", "Executing Commands", "Stored Procedures", "The ADO.NET object model" and "Using XML and XML Schemas".
Reviews0
PriceFree
Views1643
ASP upload to database or file
posted byinfoinDatabase-related
To database or not to database? Test of consumed resources (processor, memory) and results with file upload to database or file system. Test of JetOLEB connection to MDB, test of MSSQL 2000 and AppendChunk method and UPDATE text SQL command.
Reviews0
PriceFree
Views4063
Send an email from ASP using CDONTS/Outlook
posted byinfoinEmail Systems
Short samples which lets you send an email from ASP or WSH, using several objects (CDONTS.NewMail, CDO.Message, Outlook.Application). You can send an email using IIS SMTP service, remote SMTP server or POP3/IMAP.
Reviews0
PriceFree
Views5520
ASP and current performance values
Want to show current number of users on your ASP page? This article lets you show a way to access IIS/ASP performance values from ASP. Source to show current number of anonymous users or main IIS performance values in HTML, values from other computers.
Reviews0
PriceFree
Views2136