Most Popular Scripts | ASP | Tutorials & Tips
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
Views3858
Access To HTML
posted byinfoinFile Manipulation
This short example will allow you to dynamically create "static" html documents from an Access data on your web server using Active Server Pages. Basically after reading the contents of the db, instead of writing output to the browser it is written to the server.
Reviews0
PriceFree
Views2167
Find a visitor's IP address with ASP
posted bytiposaurusinMailing List Management
You might want to be able to see the IP address of a visitor to your website in order to make sure you display relevant information to them, or to even block access. This tutorial shows how to find out the IP of a visitor using ASP.
Reviews0
PriceFree
Views1461
Find the Current URL using ASP
posted bytiposaurusinIntroduction to ASP
It is often handy to know the address of the page a script is running on. This tutorial for beginners will walk you through creating a script to do this.
Reviews0
PriceFree
Views1368
How to use the Query String in ASP
posted bytiposaurusinIntroduction to ASP
The query string is a powerful tool for sending information between different webpages. This tutorial for beginners shows how to use the query string in ASP.
Reviews0
PriceFree
Views1344
Introduction to asp.net 4.0
posted byabdulsamiinIntroduction to ASP
This is an article on new features in asp.net 4.0.
Reviews0
PriceFree
Views694
Sending email with ASP
posted bybetacoderinEmail Systems
In this article we demonstrate how to generate and send emails with ASP using CDOSYS - Microsoft's improved interface for SMTP email. You will learn how to send text and html emails, emails with attachments, use a remote server, load recipients from a database, set the priority / importance of an email and request a read/return receipt.
Reviews0
PriceFree
Views815
How to read asp radio button list selected value
posted byshawpnenduinForm Processing
Using javascript to get the asp radio button list selected value is not an easy job like other asp.net objects. To get the selected value from asp radio button list you have to iterate through all the radio buttons in that set and then read the value for checked radio button. In this post i will try to give you a complete example on how we can read selected value or selected text from Asp RadioButtonList or from HTML input type="radio". So lets start. At first create a new aspx page. In this page i will add one Asp RadioButtonList & one HTML input type="radio" object. Also add two labels to display the Selected Value & Selected Text as well. Our targeted output should be
Reviews0
PriceFree
Views959
How to get SelectedText from Asp Dropdownlist or HTML Select option
posted byshawpnenduinForm Processing
asp:DropDownList is the server side control of asp.net & the drop down selection list is an element of HTML forms commonly know as Combo Box. Most of the times developers need to find or get the Selected Index value, Selected Value & Selected Text. In this post i will show you how one can write a cross-browser supported client side javascript to get Selected Index, Selected Text & Selected Value form asp.net server side control asp:DropDownList & HTML drop down selection list. Hope it will help & save time for developers.
Reviews0
PriceFree
Views1121
List Images or Other Files in a Folder Using ASP+FileSystemObject
posted byschwarzennegerinFile Manipulation
This is a simple script that lists the files present in the specified folder (directory). It uses VBScript's FileSystemObject to scan and return list of files in the specified folder that match specified filename extension(s). In addition to file names, the script also shows file size and last modified date.
The example also demonstrates a naive use of RegExp object to match multiple file extensions. A standalone VBScript function plus an accompanying ASP example to display the date is provided.
Reviews0
PriceFree
Views1021
Generate Random Strings Using ASP/VBScript
posted byschwarzennegerinRandomizing
Simple yet customizable function that allows you to generate random strings using characters from multiple sets e.g. upper case, lower case, digits and symbols. The random strings can be used in various systems where short, random strings are needed; such as login systems (random password generation) and referral/promotional/discount codes.
The coder can specify and change the complexity of string with ease. Few examples presets and output included.
Reviews0
PriceFree
Views1042
Multi Dimensional Arrays
posted bySteve FrazierinIntroduction to ASP
In this article we will look at Multi Dimensional Arrays, Focusing on the Nontraditional Arrays.
Reviews0
PriceFree
Views1084
Handle Error simple way in ASP.NET
posted byinfoinError Handling
ASP.NET is more easier than other development technologies and languages. While working on asp.net platform, you may access to system windows event log. Using System namespace you retrieve messages.
Reviews0
PriceFree
Views807
2D Array in Classic ASP
posted byhighwingersinDiscussion Boards
This tutoial will put you into right direction on how to create a simple Asp classic 2D array.
Reviews0
PriceFree
Views1627
SQL statements in ASP - beware the apostrophe
posted bygoogleme.com.auinDevelopment
One of the most common problems encountered in ASP when using SQL statements, is the existence of an apostrophe (i.e. single quotation mark) in an SQL query string. I say problem because SQL Server (or any T-SQL database server) interprets single quotes as the representation of a string value - that is, as delimiters. Therefore to avoid conflict between single quote delimiters and apostrophes we need to let ASP know that we want an actual apostrophe and not the end of the string. My short tutorial will show you how.....so let's get started
Reviews0
PriceFree
Views1304
Build a Drop Down menu using an ASP Recordset
posted bygoogleme.com.auinDevelopment
This tutorial is about a piece of ASP functionality that is as old and common as grandma's blueberry pie ---> how to build a drop down menu using ASP. Specifically, how to create a select menu element for each record returned in an ASP recordset. I'll show you how to do it in 4 simple steps...
Reviews0
PriceFree
Views1422
Create and write content to a text file using ASP
posted byjawahar_prasadinFile Manipulation
Tutorial and Code - Create and write content to a text file using ASP
Reviews0
PriceFree
Views2285
Generating random passwords
posted bydevtutorialsinRandomizing
Let's say you have a website and contains a membership process. But you do not want visitor to type his/her own password and want to create a temporary password for new member. You may add following function to generate a random password.
Reviews0
PriceFree
Views1115
Displaying last modified date of any file
posted bydevtutorialsinFile Manipulation
The scope of this code sample is focusing how to find and display of any file's last modified date & time. Probably, you've used to see some pages on web, written at bottom of page last modified date. Now we will create a simple code to do this.
Reviews0
PriceFree
Views1260
Image downloading from remote servers in ASP
posted bydevtutorialsinImage Manipulation
In this tutorial, we will access to a remote server, download image, rename ths image and save to our file system. We will use one function (getImage) and one subroutine (saveImage) to complete this sampel code.
Reviews0
PriceFree
Views972