ASP Tutorial part 1

I was learning asp and figuring out how to do simple things in the now almost obsolete language.

But i heard the knowledge of asp helps you work in the Microsoft Technologies like ASP.NET etc.

Lets get started rite now.If you have worked on php you will be knowing tags.

Similarly in asp the ASP tags are <% and %>. You need to place your asp code between the same.

example1:
[code lang=”asp”]
<% response.write("Hello World!")%>
[/code]

for working in any server side language, HTML knowledge is must. Its not that difficult to learn html. You can use html within asp response statement.

[code lang=”asp”]
<%
response.write(“

You can use HTML tags to format the text!

“)
%>
[/code]
Next time we will deal with variables and loops.Happy ASP ing!! .

Published by

Varun Krish

Varun Krish has been dabbling with computers and websites for almost 2 decades. He has traveled to over 30 countries and hopes to visit every country on earth one day. He is currently the Editor-in-Chief of FoneArena.com and also advises startups and product companies on how to build better products. You can follow him on @varunkrish

Leave a Reply

Your email address will not be published.