Kevin
Tue Apr 27 07:39:19 CDT 2004
Hi arno,
ASP (Active Server Pages) is not a language, but a technology. It is
actually an ISAPI (Insternet Server Application Programming Interface),
which resides on a web server and handles client requests for pages with a
".asp" extension. It uses any of several scripting languages, most notably
Microsoft Visual Basic Scripting Edition (VBScript), but also including
JScript and one or 2 others. ASP dynamically writes HTML into an HTML
document that is sent beck to the browser as a Response to the Request for
the page, using server-side logic to determine what it writes out to the
page. It has the capacity to perform certain types of operations on the
server, including the ability to interact with COM (Compoentn Object Model)
DLLs on the server to perform such operations as using email, working with
databases, etc.
Microsoft has a huge repository of reference materials on their web site,
called the MSDN (Microsoft Developer Network) Library:
http://msdn.microsoft.com/library/default.asp
You can read all about any Microsoft technology on that site, incuding ASP
and ASP.Net. To get your feet wet, you might want to stop by my web site at
http://www.takempis.com, which has a number of articles, tutorials, and
sample code that are for beginners with ASP.
In addition, Microsoft has several ASP and ASP.Net newsgroups, including
microsoft.public.inetserver.asp.general for ASP, and
microsoft.dotnet.framework.aspnet for ASP.Net.
Good luck!
--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
"arno" <schoblochr@azoppoth.at> wrote in message
news:OZXn#pELEHA.2244@tk2msftngp13.phx.gbl...
> Hello,
>
> I am wondering _what_ programming language ASP is, where can I get a
(free?)
> editor for it, where can I find documentation on the
objects/methods/events
> that are available? Is there something for ASP like SelfHTML? I have the
> same questions for ASP.net...
>
> Somehow I managed to create a contact form that's sending emails with
> asp-scipts (CDONTS, uhh old stuff, I know).
> I would like to enhance my scipts eg. by checken the user input, so I
would
> need functions like
>
> left
> mid
> search for strings in a string
> AND/OR
> length of strings
> concatenations
> select case
> if elsif
> etc. etc.
>
> regards
>
> arno
>
>