Stupid ASP Question

Discussion in 'C#' started by integrity, Oct 28, 2009.

  1. #1
    How do i know whether I have ASP on my server or not? It has cpanel. Does ASP come with that? Or?

    Sorry!
     
    integrity, Oct 28, 2009 IP
  2. Corwin

    Corwin Well-Known Member

    Messages:
    2,438
    Likes Received:
    107
    Best Answers:
    0
    Trophy Points:
    195
    #2
    1. Create a file called test.asp.

    2. Insert the following code in test.asp:
    <%
    Response.Write "Hello, World!"
    %>
    Code (markup):
    3. Save the file and then view the page in your browser. If you see ONLY the text "Hello World", then CONGRATULATIONS, your server supports ASP!

    If you see an error anything else, or if you see the above code exactly as written, then your server doesn't support ASP.

    Let me know if this helps!
     
    Corwin, Oct 28, 2009 IP