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
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.
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>
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.
Comment