<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/css" href="../../common/rss.css" ?>
<rss version="2.0">
<channel>
<title>Bucaro TecHelp : Programming : Active Server Pages</title>
<link>http://bucarotechelp.com/program/asp</link>
<description>
This section contains information about Active Server Pages (ASP) programming.
</description>
<language>en-us</language>
<pubDate>Thu, 09 Sep 2021 10:20:51 GMT</pubDate>
<docs>http://www.rssboard.org/rss-specification</docs>
<item>
<title>Installing IIS on Windows 10</title>
<link>http://bucarotechelp.com/program/asp/77032101.asp</link>
<description>
If you want to test your Classic ASP scripts, IIS (Internet Information Services) is a feature that included with every Windows 10 operating system, but it is an option, so you do have to install it first.
</description>
<pubDate>Thu, 09 Sep 2021 10:20:51 GMT</pubDate>
</item>
<item>
<title>Server-Side Includes</title>
<link>http://bucarotechelp.com/program/asp/77092001.asp</link>
<description>
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.
</description>
<pubDate>Thu, 11 Mar 2021 10:55:37 GMT</pubDate>
</item>
<item>
<title>ASP MapPath to Convert Physical Path to Virtual Path</title>
<link>http://bucarotechelp.com/program/asp/77092101.asp</link>
<description>
An Internet link is a virtual path. Certain server objects, like the FileSystemObject, require an actual physical path. The MapPath function accepts a virtual path as a parameter, and returns the physical path.
</description>
<pubDate>Wed, 10 Mar 2021 07:39:04 GMT</pubDate>
</item>
<item>
<title>ASP Loop Control Structures</title>
<link>http://bucarotechelp.com/program/asp/77092501.asp</link>
<description>
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.
</description>
<pubDate>Sat, 06 Mar 2021 10:33:32 GMT</pubDate>
</item>
<item>
<title>ASP VBScript Function Procedures</title>
<link>http://bucarotechelp.com/program/asp/79051702.asp</link>
<description>
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.
</description>
<pubDate>Sun, 14 Jul 2019 10:10:45 GMT</pubDate>
</item>
<item>
<title>ASP VBScript Sub Procedures</title>
<link>http://bucarotechelp.com/program/asp/79051802.asp</link>
<description>
One of the most common uses of Sub Procedures in ASP is to write html code and text, an example is shown here.
</description>
<pubDate>Sat, 13 Jul 2019 10:29:18 GMT</pubDate>
</item>
<item>
<title>ASP Keywords and Reserved Words</title>
<link>http://bucarotechelp.com/program/asp/79052301.asp</link>
<description>
Keywords and reserved words are predefined identifiers that have special meanings to the system, application or compiler. Here is a list of keywords and reserved words specific to ASP and to the VBScript programming language.
</description>
<pubDate>Mon, 08 Jul 2019 06:54:13 GMT</pubDate>
</item>
<item>
<title>ASP Server Object</title>
<link>http://bucarotechelp.com/program/asp/79061301.asp</link>
<description>
The Server object provides access to properties and methods on the server. The Server object MapPath method maps a website path to a physical server path.
</description>
<pubDate>Mon, 17 Jun 2019 06:41:54 GMT</pubDate>
</item>
<item>
<title>ASP Script Variables</title>
<link>http://bucarotechelp.com/program/asp/79061901.asp</link>
<description>
In ASP you don't have to declare the "type" of a variable. All variables are of the Variant type, which can contain an integer, string, or other type.
</description>
<pubDate>Tue, 11 Jun 2019 08:50:53 GMT</pubDate>
</item>
<item>
<title>ASP Arrays</title>
<link>http://bucarotechelp.com/program/asp/79072601.asp</link>
<description>
An Array is an indexed list of items. You access the elements in an array using their index.
</description>
<pubDate>Sun, 05 May 2019 09:01:24 GMT</pubDate>
</item>
<item>
<title>The ASP Object Model</title>
<link>http://bucarotechelp.com/program/asp/82040901.asp</link>
<description>
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.
</description>
<pubDate>
Mon, 22 Aug 2016 19:19:42 GMT
</pubDate>
</item>
<item>
<title>ASP VBScript to Render XML</title>
<link>http://bucarotechelp.com/program/asp/82060101.asp</link>
<description>
If you are using VBScript from an Active Server Page (ASP) you can use the Microsoft.XMLDOM object to parse and render an XML document on a webpage.
</description>
<pubDate>
Wed, 29 Jun 2016 17:06:22 GMT
</pubDate>
</item>
<item>
<title>Configuring the IIS ASP Global.asa File</title>
<link>http://bucarotechelp.com/program/asp/82070101.asp</link>
<description>
global.asa is a file that contains subroutines that execute when an ASP application starts or stops, and when an IIS session starts or stops. The file is optional, difficult to configure, is a popular target for hackers.
</description>
<pubDate>
Mon, 30 May 2016 16:08:31 GMT
</pubDate>
</item>
<item>
<title>Simplest ASP Code to Track Visits to a Specific Page</title>
<link>http://bucarotechelp.com/program/asp/82070201.asp</link>
<description>
If you want to track how many visits to a specific ASP page, it would be convenient if you could have that information available right on that page. In this article I give you the simplest ASP code to do just that.
</description>
<pubDate>
Sun, 29 May 2016 20:31:09 GMT
</pubDate>
</item>
<item>
<title>Simplest Code for ASP Password Protected Page</title>
<link>http://bucarotechelp.com/program/asp/82070601.asp</link>
<description>
Sometimes you want to store private links on your server. What is the simplest way to password protect a single webpage with classic ASP? This article provides the simplest ASP code for that.
</description>
<pubDate>
Wed, 25 May 2016 17:18:16 GMT
</pubDate>
</item>
<item>
<title>ASP.NET 5 Open Source Web Framework</title>
<link>http://bucarotechelp.com/program/asp/85040401.asp</link>
<description>
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.
</description>
<pubDate>
Thu, 27 Aug 2015 16:14:13 GMT
</pubDate>
</item>
<item>
<title>Working With Cookies in ASP</title>
<link>http://bucarotechelp.com/program/asp/90041901.asp</link>
<description>
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.
</description>
<pubDate>
Thu, 12 Aug 2010 18:51:48 GMT
</pubDate>
</item>
<item>
<title>Classic ASP vs ASP.NET</title>
<link>http://bucarotechelp.com/program/asp/90042201.asp</link>
<description>
You may wondering what the difference is between ASP and ASP.NET. ASP.NET is the successor to ASP. When you take away all of the marketing hype, ASP.NET was developed because Microsoft's COM wasn't reliable over the Internet, and Microsoft wanted to promote C#, its replacement for Java.
</description>
<pubDate>
Mon, 9 Aug 2010 18:44:40 GMT
</pubDate>
</item>
<item>
<title>Creating Webpages With ASP</title>
<link>http://bucarotechelp.com/program/asp/96100301.asp</link>
<description>
In this article, you learn that ASP is a server technology that allows you to create dynamic webpages. ASP is usually written in VBScript. VBScript is a powerful but easy to learn scripting language.
</description>
<pubDate>
Mon, 9 Aug 2010 18:44:40 GMT
</pubDate>
</item>
<item>
<title>Retrieving Form Data With ASP</title>
<link>http://bucarotechelp.com/program/asp/96081601.asp</link>
<description>
In this article, you learn how to create some basic html forms and how to use ASP to retrieving data from forms. You also learn how to convert the from's data to numerical values if you need to use it in calculations, and more.
</description>
<pubDate>
Mon, 9 Aug 2010 18:44:40 GMT
</pubDate>
</item>
<item>
<title>The ASP Application Object</title>
<link>http://bucarotechelp.com/program/asp/96020602.asp</link>
<description>
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.
</description>
<pubDate>
Mon, 9 Aug 2010 18:44:40 GMT
</pubDate>
</item>
<item>
<title>The ASP Session Object</title>
<link>http://bucarotechelp.com/program/asp/95102103.asp</link>
<description>
When a visitor retrieves their first page from your website, ASP creates a session object. A session object is associated with each user (each web browser) while they are interacting with your website.
</description>
<pubDate>
Mon, 9 Aug 2010 18:44:40 GMT
</pubDate>
</item>
<item>
<title>Working With Drives in ASP</title>
<link>http://bucarotechelp.com/program/asp/95062301.asp</link>
<description>
When ASP is installed, the FileSystemObject is automatically installed along with it. The FileSystemObject allows you to work with drives, folders, and files on the server.
</description>
<pubDate>
Mon, 9 Aug 2010 18:44:40 GMT
</pubDate>
</item>
<item>
<title>Working With Folders in ASP</title>
<link>http://bucarotechelp.com/program/asp/95062303.asp</link>
<description>
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.
</description>
<pubDate>
Mon, 9 Aug 2010 18:44:40 GMT
</pubDate>
</item>
<item>
<title>Working With Files in ASP</title>
<link>http://bucarotechelp.com/program/asp/95062201.asp</link>
<description>
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.
</description>
<pubDate>
Mon, 9 Aug 2010 18:44:40 GMT
</pubDate>
</item>
<item>
<title>Sending Email With ASP</title>
<link>http://bucarotechelp.com/program/asp/97062120.asp</link>
<description>
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.
</description>
<pubDate>
Mon, 9 Aug 2010 18:44:40 GMT
</pubDate>
</item>
<item>
<title>Handling ASP Errors</title>
<link>http://bucarotechelp.com/program/asp/94082501.asp</link>
<description>
If you don’t properly handle ASP (Active Server Pages) errors, the message The page cannot be displayed will be sent to your Web site visitor. To avoid that, use the On Error Resume Next statement and the Err Object to handle errors.
</description>
<pubDate>
Mon, 9 Aug 2010 18:44:40 GMT
</pubDate>
</item>
<item>
<title>Introduction to ASP.NET</title>
<link>http://bucarotechelp.com/program/asp/92082701.asp</link>
<description>
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.
</description>
<pubDate>
Mon, 9 Aug 2010 18:44:40 GMT
</pubDate>
</item>
</channel>
</rss>