-
how to use java bean in jsp (1 messages)
- Posted by: st rajan
- Posted on: August 26 2000 03:02 EDT
can i run jsp in javawebserver and then how? how to use java bean in jsp... any one help meThreaded Messages (1)
- how to use java bean in jsp by Harinath Parameshwaran on August 29 2000 09:33 EDT
-
how to use java bean in jsp[ Go to top ]
- Posted by: Harinath Parameshwaran
- Posted on: August 29 2000 09:33 EDT
- in response to st rajan
Yes. You can use Java Web Server to run your jsp.
You can call your jsp thru an html page which can be run using htp://localhost:8080/<your html page>
You can use a java bean in jsp using the following syntax at the starting of jsp file.
<jsp:useBean id="<package name>" scope="session" class="<package.bean name>" type="<package.bean name>"/>
Hope this answers your question!