Home

Submit

Source

Feeds

Home » ASP » Getting Started ::

ASP Getting Started
Declaring variables in ASP is simple, especially since all variables are of Variant type. What does this mean to you? You don't have to declare if your variable is an integer, string, or object. You just declare it, and it has the potential to be anything. To declare a variable in ASP/VBScript we use the Dim statement. If you wanted to print out the variables, you could use the ASP 'Response.Write' command.
Related Tutorials
ASP General Development
Content Variables
ASP / General Development
This is a simple one page example of how to display all Server, Application and Session variables.

Site: cybercoded.com Report - View Tutorial

ASP General Development
Some Nifty Functions for Passing Variables Around
ASP / General Development
Here are a set of very useful functions that allows you to pass variables around via forms, querystrings, and/or cookies.

Site: www.asp101.com Report - View Tutorial

ASP General Development
Application variables
ASP / General Development
Here, you'll find a few example codes that allows you to save thousands of unnecessary database queries using Application variables.

Site: coveryourasp.com Report - View Tutorial

ASP Getting Started
Declaring variables in ASP
ASP / Getting Started
Learn how to declare and use properly variables in ASP

Site: www.tutorials007.com Report - View Tutorial

ASP Getting Started
Constants
ASP / Getting Started
Constants just as variables are used to store information. The main difference between constants and variables is that constant value can not be changed in the process of running program. If we attempt to re-assign the value of the constant we'll get a run time error.

Site: www.webcheatsheet.com Report - View Tutorial

ASP General Development
Beginner's Guide to Effective use of Arrays in ASP
ASP / General Development
An array is basically a data structure, which holds a fixed number of variables. Instead of declaring ten string variables to hold ten different elements, you could declare one array and put all the ten elements into the array.

Site: www.stylusinc.com Report - View Tutorial

ASP General Development
Displaying All of the Form Variables
ASP / General Development
This short tutorial describes a little function that is useful in debugging your ASP pages. This function, FormDataDump(), outputs all of the form variables being passed into a page. Various options for this function allow the developer to view the values in a 'debugger-style' mode, or in a 'quiet-mode,' in which case the form variable output is hidden from the end user.

Site: www.4guysfromrolla.com Report - View Tutorial

ASP Getting Started
Encoding URL strings
ASP / Getting Started
While passing variables as an URL's querystring, you should need to encode the string. All special characters like space must be written in adress bar in a form for browser.

Site: www.dotnetindex.com Report - View Tutorial

ASP Miscellaneous
Caching Data in ASP
ASP / Miscellaneous
Do you have a web page that takes a long time to generate? Do you have a SQL query that you want to cache the results? This tutorial will show how to use Application variables to store cached data.

Site: www.codebeach.com Report - View Tutorial

ASP General Development
Quick Debug Beta 1
ASP / General Development
When it comes to debugging ASP, you often want to keep track of the variable values throughout the script. This article introduces a procedure that, when invoked, displays all variables in a script along with their values and internal types.

Site: authors.aspalliance.com Report - View Tutorial

ASP Miscellaneous
Visual Basic Script (VBScript)
ASP / Miscellaneous
This tutorial describe: Using VBScript in ASP Pages, Mixing VBScript Statements with Static HTML Text, Variables and Expressions in VBScript, Arrays, "Collection" Class.

Site: www.herongyang.com Report - View Tutorial

ASP Cookies and Sessions
ASP Session Transfer across domains
ASP / Cookies and Sessions
You may have come across a situation where you have two ASP websites, possibly on different servers, and you wish to pass a visitor from site 1 to site 2 whilst retaining all the session variables.XSess passes the entire session from one ASP webserver to another securely.

Site: www.tele-pro.co.uk Report - View Tutorial

ASP General Development
Pass values of your array from one page to another
ASP / General Development
This tutorial will explains how to pass the values in an array from one page to another without using session or application variables.

Site: www.scriptmate.com Report - View Tutorial

ASP Cookies and Sessions
Maintaining Session State With ASP
ASP / Cookies and Sessions
Sessions and cookies can be used to persist visitor information. In this article Himanshu shows us how to main session state with ASP using a combination of cookies, sessions and the global.asa file.Session and application variables are an important part of ASP programming.

Site: www.devarticles.com Report - View Tutorial

ASP Getting Started
Active Server Pages tutorial for beginners
ASP / Getting Started
This tutorial will show you Active Server Pages. Main topics include: What are Active Server Pages?, Displaying Date, Time, and Text, Using Variables, and Forms, and Active Server Pages Server-Side Scripting Programmer's Reference. It also includes several useful scripts.

Site: www.asptutorial.info Report - View Tutorial

 
Site Search

 
Categories
2D Graphics 3D Graphics Office Applications Databases Desktop Programming Web Development
 
Advertisement