All our examples shows the ASP code in red.

This makes it easier for you to understand how ASP works.

Hello World Visual Studio

ASP Uses VBScript

The default scripting language in ASP is VBScript.

We will show Hello World in a message box. Purpose of this program to understand and getting idea how basic controls works and how we can use simple coding in Visual Basic. We will setup few very basic controls and assign properties like size, caption, and events. Then we will write a little piece of code to make it working. A simple application written in F# that prints Hello, World! Download and install To start building.NET apps, download and install the.NET SDK (Software Development Kit). The most popular source code that is being run is the 'Hello World'. Any programming language has its own version of 'Hello World' Application. To learn more about the list of Hello World Program, visit Wikipedia’s example. In Visual Basic, there are several ways of showing the Hello World text.

A scripting language is a lightweight programming language.

VBScript is a light version of Microsoft's Visual Basic.

ASP Files

ASP files can be ordinary HTML files. In addition, ASP files can also contain server scripts.

Scripts surrounded by <% and %> are executed on the server.

The Response.Write() method is used by ASP to write output to HTML.

The following example writes 'Hello World' into HTML:

Example

<!DOCTYPE html>
<html>
<body>
<%
Response.Write('Hello World!')
%>

</body>
</html>
Show Example »

VBScript is case insensitive. Response.Write() can be written as response.write().

Using JavaScript in ASP

To set JavaScript as the scripting language for a web page you must insert a language specification at the top of the page:

Example

<%@ language='javascript'%>
<!DOCTYPE html>
<html>
<body>
<%
Response.Write('Hello World!')
%>

</body>
</html>

This tutorial uses the VBScript scripting language.

More Examples

There is an easy shortcut to Response.Write(). You can use an equal sign (=) instead.

Visual Basic Sample Code Hello World Bank

The following example also writes 'Hello World' into HTML:

Example

<!DOCTYPE html>
<html>
<body>
<%
='Hello World!'
%>

</body>
</html>
Show Example »

HTML tags can be a part of the output:

Example

<!DOCTYPE html>
<html>
<body>
<%
Response.Write('<h2>You can use HTML tags to format the text!</h2>')
%>

</body>
</html>
Show Example »

HTML attributes can be a part of the output:

Example

<!DOCTYPE html>
<html>
<body>
<%
Response.Write('<p>This text is styled.</p>')
%>

</body>
</html>
Show Example »

VBScript Examples

This tutorial contains a lot of VBScript examples.

VBScript Reference

This tutorial has complete VBScript reference.


Basic