If you are building a shooping cart, you want to modify currency. If you add this simple code inside your code, you may easily change currency format. To make this changes you must modify local identifier of page.
Formating Numbers and Digits ASP / General Development
ASP 3.0 supports us formating numbers and digits. You may remove any digits or add a decimal point. You may modify a currency or using a number in a mathematic operation.
Self Submitting Pages ASP / Web Forms
A very important coding method to understand when developing ASP pages is the page that submits to itself. This technique is very powerful and can drastically reduce the number of files you have to maintain and the number of places in which you need to make changes when maintaining code. The concept is simple. Using forms, set the action value to the URL of the page in which the form resides. Then use ASP code to determine what the current state of the page is, and present the proper output to the user.
Error Messages in ASP ASP / Debugging and Error Handling
Problems and coding syntax mistales can been in every serverside application. Security of application is very important. You should need to understand what's going wrong in deep of an apllication. This sample of code is an easy to use an error handling message writer.
Creating Excel Files Online ASP / Excel and ASP
ASP has the ability to dynamically output any kind of office application format. Before to start coding, The first thing we need to do is set correct file type. Becase the browser needs to know what to do with the file. Second step is to edit file name. You can use HTML and CSS to create styles in your word document.
Creating Word Files Online ASP / Word and ASP
ASP has the ability to dynamically output any kind of office application format. Before to start coding, The first thing we need to do is set correct file type. Becase the browser needs to know what to do with the file. Second step is to edit file name. You can use HTML and CSS to create styles in your word document.
Loops within Loops: Coding an ASP-based Bulletin Board ASP / Scripts
This article provides an easy way to list nested forums. It does have some drawbacks, though. For starters, there is an upper-bound on the number of nested replies a message can have. In this example, the number is 12, although this is configurable. Furthermore, this approach is not the most efficient approach, and could be streamlined using stored procedures and fewer ADO objects within the code.
ASP For Beginners ASP / Getting Started
What is ASP? ASP stands for Active Server Pages. Actually, ASP in itself isn't a language, instead it is more of a technology used by VBScript on the server side to display dynamic content on the web pages.
Speeding Up ASP Page Execution ASP / General Development
ASP pages are executed on the fly by a server when they are requested by a visitor. Because they are not compiled, ASP scripts are slow and hold up the processing of an html page. This results in people leaving your site and severely reduces the enjoyment that your asp apps can provide.
Creating a simple ad rotating system using ASP ASP / Scripts
Creating a advertisement rotator page is easy - ASP comes with an Adrotator component that's easy to use. The component, called AdRotator, is installed when you install ASP. The component has been a part of ASP installation since the first version of ASP.
Professional Contact Form PART II ASP / Web Forms
Now in this second part of our script, we will add ASP coding. Our script can check all fields of our form. Our control function searches !#$%^&*()=+{}[]|\\;:/?>,<' characters. If validation function finds one of this character, script returns an error. You may modify this forbidden characters.
Inserting Rows into a Database ASP / Database Integration
This tutorial will show you how to insert a row of data into a database using ASP and an MS Access database. You can do it on one ASP file, but we'll have two files: one processor page (proc.asp), and one form page (form.asp). Then, we'll make the MS Access database that corresponds to the ASP.
Creating a Server Component with Visual Basic ASP / Component Building
This article is primarily for Active Server Pages (ASP) developers who would like to take their ASP skills a step further. By bundling ASP code into server-side components, developers not only increase Visual Basic functionality and ASP speed, but also find a marvelous way to encapsulate and protect their ASP source code.
Introduction to ASP & What is ASP? ASP / Getting Started
ASP is sometimes described as a server technology which means its not quite a programming language (though developers including myself see it as one). ASP incorporates a programming language called VBscript though you can use JScript and Perl or any other language for that matter just as long as the language concerned supports Active X scripting.
ASP Speed Tricks ASP / Database Integration
This articles describes practical methods of optimizing the performance of classic ASP pages which retrieve and display tabular data from a database. Comparative test results are presented. Many of the techniques apply to ASP.Net and other scripting languages.