What is JSP and how do you run it?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • swapnali143
    New Member
    • Mar 2012
    • 34

    #1

    What is JSP and how do you run it?

    Hey friends....
    can anybody tell me what is JSP with ex...
    and how to run JSP??
  • Frinavale
    Recognized Expert Expert
    • Oct 2006
    • 9749

    #2
    JSP stands for Java Server Pages.

    You use it to create dynamically driven websites.
    Similar technologies would include asp, php etc.

    You need a web server that will host the JSP files.
    You need Java installed on the computer so that they can be executed...you need a Java compiler to compile the pages for you.


    When the web server receives a request for your page, it will execute the JSP code. That code will generate HTML that is sent back to the browser for it to render the page.


    -Frinny
    Last edited by Frinavale; Jul 9 '12, 02:15 PM.

    Comment

    • swapnali143
      New Member
      • Mar 2012
      • 34

      #3
      Thank you Frinavale for answer

      Comment

      Working...