Results 1 to 6 of 6

Thread: ASP Script for Beginners

  1. #1
    Join Date
    Nov 2005
    Posts
    10

    Default ASP Script for Beginners

    Creating your first ASP Page

    Before we start this tutorial you will need to install ASP on your system. See ASP Install before preceding. Great lets begin, this tutorial will just display some text in a web browser, It will introduce you to the basic tags and actions of ASP.


    ASP and HTML can work side by side, Lets creat a very basic HTML page.

    < html>
    < head>
    < title>My First ASP webpage
    < /head>

    We can now place ASP in the HTML. ASP uses the < % %> tags to tell the server asp code will begin here and end here.

    Here is the script that will display the words ” This is my first ASP Page ” in a web browser

    < html>
    < head>
    < title>My First ASP webpage
    < /head> < %
    Dim strMessage

    strMessage = "This is my first ASP Page"

    Response.Write (strMessage)

    %>


    Lets explain each line of the code

    Dim strMessage Creates & declares the message variable.

    StrMessage = ” ” This line holds the variable we wish to print.

    Response.Write () Prints the variable stored in the StrMessage line.

    Now store this file in your wwwroot folder in PWS folder and check in in your browser.

    Happy coding My Friends!

  2. #2
    Join Date
    Feb 2005
    Posts
    39

    Default Creating your first ASP Page

    Where to dowload ASP?
    Where is your second lesson?

  3. #3
    Join Date
    Jun 2006
    Posts
    5

    Default

    hello albadil

    please put some more link to build asp website...

  4. #4
    Join Date
    May 2006
    Posts
    7

    Default ASP on Bizhat

    Hi there,

    Can I use ASP on my Bizhat site?

  5. #5
    Join Date
    Jun 2006
    Posts
    6

    Default

    how i can use it on my site ?

  6. #6
    Join Date
    Jun 2006
    Location
    indonesia
    Posts
    7

    Default

    i'm a newbie on this, but, can asp make a guest book on my site (on biznet).

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •