Click to See Complete Forum and Search --> : java servlets


p236339
06-10-2007, 12:33 PM
HI all
i know basic concepts of java...
need to know more about servlets and jsp's..

thanks in advance
chaitanya

Stefanust
06-11-2007, 02:34 AM
sure what do you want to know?

p236339
06-11-2007, 10:18 AM
i need to learn abt abt servlets n jsp's for designing my clints portal...
we have predefined standard jsp's provided...for our custom dev, we need to edit them n dev new portal desktops..
thats my requirement
chaitanya

haider12
06-21-2007, 12:36 AM
Servlets are server side entities that receive request from the client and send response to the client. Servlets are usually the front end controllers of the web application that forward the control to business layer.

Java Server Pages are dynamic webpages which contain some server side code as well as html code. The client can view only html code and the output of the server code. JSps are usually linked to servlets and other JSPs or html files.