Home > Archive > ASP > May 2006 > How can start to learn ASP?
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
How can start to learn ASP?
|
|
| webmastermuztagh@gmail.com 2006-05-29, 3:56 am |
| Hi!
I know something about HTML and no more but recently i really like
to learn ASP but unfortunatly no body know ASP here. So is there any
body can help! How can start asp and what should i know before i start
learning ASP.I would very aprecieate if anybody could help me, and i am
till thankfull , you do tell me nothing ,though!
Love
From
Ali
| |
| Evertjan. 2006-05-29, 3:56 am |
| wrote on 29 mei 2006 in microsoft.public.inetserver.asp.general:
> Hi!
> I know something about HTML and no more but recently i really like
> to learn ASP but unfortunatly no body know ASP here. So is there any
> body can help! How can start asp and what should i know before i start
> learning ASP.I would very aprecieate if anybody could help me, and i am
> till thankfull , you do tell me nothing ,though!
ASP is not a computer language.
ASP is a platform where you can use VisualBasic-Script [VBS]
or Javascript on a server.
VBS is traditionally used most, so you would have to know/learn something
about that.
Hands-on is essential, so you need access to a ASP-enabled server, on
your XP-pro machine, or on a www-server.
Then try:
=========== test.asp =============
<html>
<body>
Test:<hr>
<%
Dim i
For i = 1 to 10
Response.write "Hello world!<br>"
Next
%>
</body>
</html>
===================================
Warning:
ASP.NET is somethng altogether DIFFERENT,
and is not spoken on this NG.
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
| |
| Anthony Jones 2006-05-29, 7:56 am |
|
<webmastermuztagh@gmail.com> wrote in message
news:1148886692.928648.33150@u72g2000cwu.googlegroups.com...
> Hi!
> I know something about HTML and no more but recently i really like
> to learn ASP but unfortunatly no body know ASP here. So is there any
> body can help! How can start asp and what should i know before i start
> learning ASP.I would very aprecieate if anybody could help me, and i am
> till thankfull , you do tell me nothing ,though!
> Love
> From
> Ali
>
This is the VBScript language reference typically used in ASP development:-
http://msdn.microsoft.com/library/e...70296ced968.asp
This is the reference material for the ASP scripting context:-
http://msdn.microsoft.com/library/e...ef33a651779.asp
This is a good tutorial to just get you started:-
http://www.w3schools.com/asp/default.asp
|
|
|
|
|