InterviewSolution
Saved Bookmarks
| 1. |
What do you mean by server-side include (SSI) functionality in Servlets? |
|
Answer» Servlets can be ADDED in HTML pages with the SERVER-side include (SSI) functionality. A page can be preprocessed by the server to add the output from servlets at some points within the page, in the servers that support servlets. <SERVLET CODE=ServletName CODEBASE=http://server:port/dir initParam1=initValue1 initParam2=initValue2><PARAM NAME=param1 VALUE=val1><PARAM NAME=param2 VALUE=val2> Text appearing here indicates that the web server which provides this page does not support the SERVLET tag.</SERVLET> |
|