Working With Cookies in ASP
Cookies are small text files that are placed in a visitor's Web browser's cookie cache by a Web server when someone visits a Web site. By using a cookie the Web server can store and retrieve information about the visitor between pages. The cookie may store information about what pages the visitor viewed or what links the visitor clicked on while they visited the Web site. More ...
Introduction to ASP.NET
This article provides an overview of ASP.NET and its advantages and disadvantages compared to classic ASP. It also provides a code-behind example that you can create without Visual Studio by just typing it into a text file, and then run it on an IIS server that has the .NET framework installed. More ...
Server-Side Includes
The server-side include directive instructs the Web server to insert the content of another file into this file before processing it. It can be used to include headers, footers, and other elements that will be reused on multiple pages. More ...
ASP.NET 5 Open Source Web Framework
In February 2015, Microsoft announced an open source web framework, ASP.NET 5. Developers can now run ASP.NET applications on three distinct platforms, i.e., Windows, Linux and Mac. More ...
Working With Files in ASP
When ASP is installed, the FileSystemObject and the TextStream object are automatically installed along with it. The ASP FileSystemObject allows you to work with drives, folders, and files on the server. The TextStream object allows you to create, read, and write files. More ...
ASP Loop Control Structures
A loop control structure uses one or more conditional statements to control how many times the same block of code is executed. A loop cn abe configured to repeat a specific number of times, or repeat until a condition is true or until a condition is False. More ...
Working With Folders in ASP
The FileSystemObject has a collection property called Drives. Each drive in the drives collection has a RootFolder object. Each Folder (including the RootFolder) has a subfolders collection and a Files collection. More ...
Sending Email With ASP
Sending email with ASP (Active Server Pages) is not difficult. You can use ASP email to create a contact form, support request form, or even perform mass emailings. CDO (Collaboration Data Objects) is the Microsoft technology that simplifies the creation of email applications. More ...
The ASP Application Object
Each website is an application associated with an application object. You can create subdirectories within the website and use ISM to make them into applications. Then if an application crashes, the website will continue to run. More ...
ASP VBScript Function Procedures
The purpose of a Function is to create a block of code that can be called by a reference (it's name) and can perform a specific operation on arguments that are passed to it by the calling code. More ...
The ASP Object Model
ASP is a server-side scripting engine released as part of Microsoft's IIS (Internet Information Services). It allows dynamically generated web pages. ASP became known as Classic ASP. Microsoft has promised to support Classic ASP until at least October 14, 2025. More ...