doubt on creating JSP in dreamweaver!

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • dhwanimathur
    New Member
    • Dec 2007
    • 4

    #1

    doubt on creating JSP in dreamweaver!

    hi all

    this is my first post in this forum,
    i am beginner of JSP but since
    i work in organisation i have to work
    in Dreamweaver IDE directly instaed of textpad
    so i need help in creating JSP
    i am not familiar to the environmnt of Dreamweaver

    i just wrote some html code as below


    Code:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <title>Head First Servlet and JSP</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <p>This is just a trial of JSP</p> 
    <h1><ul>Here is a form which consist of two text boxes and a button</ul></h1>
    [B]<form action="" method="post">[/B]<p>
    First Name:<input type="text" name="firstname"><br>
    Last Name:<input type="password" name="lastname">
    <input type="Submit" value="Submit">
    </p>
    </form>
    <body>
    
    </body>
    </html>
    as i see there are three tabs in dreamweaver code split and design
    i wrote code but it is in html now i want to write somejsp as i have made it bold
    form action tag

    1)were will i create jsp then call it in form action tag
    2)how must i run to check if i am in right direction?
    3)where i must design like texct boxes buttons in form
    i m totally confused please help me on this,atleast soo that
    i can begin in writing small jsp programs ...........

    it will be realy great thanks in advance........ ...........


    Dhwani:>Its always too soon to quit.
  • BigDaddyLH
    Recognized Expert Top Contributor
    • Dec 2007
    • 1216

    #2
    You can't just stumble in one morning and start writing JSPs. You need to know what you are doing. You need to read up on them, first. Here is Sun's tutorial:



    There are a number of good books on JSP and servlets, too:

    Head First Servlets and JSP

    If you are weak in Java, you should study the core language, too:

    Head First Java

    As for how you write the JSP and the web application, you could do it in any text editor, but most developers benefit from using an IDE designed to support peoper web development, like Eclipse or NetBeans:

    The Eclipse Foundation hosts 450+ open source projects with vendor-neutral governance, enabling global collaboration in automotive, IoT, cloud, and emerging …


    Comment

    Working...