Re: How to invoke a bean method in a JSP using a HTML Form Button

1999-11-23 Thread Arun Thomas
Masaoud, You have to remember that the JSP pages are server-side, while the buttons and GUI are a result of client-side display. Pressing a button on your form can do nothing vis-a-vis the JSP. What you can do is submit the form (along with all the parameters) to a jsp. The jsp can now process

Re: How to invoke a bean method in a JSP using a HTML Form Button

1999-11-23 Thread Karl Roberts
Hi, First things first, It is important to realize that all JSP's get converted into servlets, so anything that a servlet can do, such as session tracking, can be acheived by JSP's. In JSP's we can get hold of an implicit session object like so <% String thisSession = session.getId(); %> The