What is difference between Applets & Servlets ???

vinu

New Member
What is difference b/w applets and servlets???<br />
Pls explain in details and No LINKS PLS...<br />
Thank you<br />
 

ZressE

New Member
an applet runs in the client browser.
a servlet is code which executes on the server before sending the results to the client browser.
 

vpalexander

New Member
An applet runs in an access-limited sandbox within a browser. Examples include specialized calculators, popup info displays, data gathering interfaces, etc.

A servlet resides behind a web server and has no security restrictions. They are frequently "faceless"; there is no visual representation of the servlet on the web page. Whether faceless or not, servlets usually return HTML to the web server for return to the client browser. Examples of servlets include mass data manipulators (database-intensive queries), AJAX handlers, web services, etc.
 

NavneetS

New Member
Applets are graphical user Interface, but it doesn't supports servlets.

Servlets are server side, but Applets are browsers

servlet is a server side scripting language .it mainly involved in web applications.it run inside the server. applet is client side applet.it mainly involved stand alone application developement
 
Top