|
Java vs C++
|
| C++ Vs Java• Java does not support pointers. Pointers are inherently tricky to use and troublesome.• Java does not support multiple inheritances because i.... |
| by Ajay Abhishek on 25 Aug, 2010
[ 0 comments ]
|
|
|
Using Cookies in Java
|
| Cookie a small data file reside in user’s system. Cookie is made by web server to identify users. When user do any request send to web server and web server know information of user by these coo.... |
| by Ram Rajput on 15 Nov, 2009
[ 0 comments ]
|
|
|
How to use Page Directive in JSPs.
|
| The page directive is used to define attributes ,that apply to an entire JSP page and use to modify the overall translation of the page .you can have more than one page directive ,you can specify a&nb.... |
| by Ram Rajput on 15 Nov, 2009
[ 0 comments ]
|
|
|
How to use scriplet tag in JSPs.
|
| Scriptlets allow Web developers to embed Java code within two specials tags,
<% %> in the JSPs.
Web developer can take the advantage of a powerful programming language to create dy.... |
| by Ram Rajput on 15 Nov, 2009
[ 0 comments ]
|
|
|
How to use declaration tags in JSPs.
|
| A declaration tag let you include members in the JSP servelet class,either attributes or methods. Although you are probably familiar with the Java programmin language and how to declare and use variab.... |
| by Ram Rajput on 15 Nov, 2009
[ 0 comments ]
|
|
|
What is JSP (Java Server Page).
|
| Jsps are a server side application, they accept the request and generate a response .Generally the request are made from a web client, and the response is a generated HTML document that get send back .... |
| by Ram Rajput on 15 Nov, 2009
[ 0 comments ]
|
|
|
Response Object
|
| Response Object in JSP is used to send information , or output from the web server to the user.Response Object sends output in form of stream to the browser. This can be redirecting one file to anothe.... |
| by Ram Rajput on 30 Oct, 2009
[ 0 comments ]
|
|
|
JSP action tags
|
| The Action tag which is another type of tag,it is use to transfer the control between pages and is also used to enable the use of the server side JavaBeans. Instead of using Java code ,the programmer .... |
| by Ram Rajput on 30 Oct, 2009
[ 1 comments ]
|
|
|