News:

GinGly.com - Used by 85,000 Members - SMS Backed up 7,35,000 - Contacts Stored  28,850 !!

Main Menu

ASP Basic Syntax

Started by sukishan, Aug 20, 2009, 12:08 PM

Previous topic - Next topic

sukishan

Basic Syntax
ASP scripts are surrounded by <% and %>.  To write some output to a browser:

<html>
<body>
<% response.write("Hello World!") %>
</body>
</html>

The default language in ASP is VBScript. To use another scripting language, insert a language specification at the top of the ASP page:

<%@ language="javascript" %>
<html>
<body>

<%
....
%>
A good beginning makes a good ending