This week's book giveaway is in the General Computing forum. We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line! See this thread for details.
hi i have the following at the top of my jsp application.
<top:useBean id="bean" ^M classname="com.title.bob.top.beans.RecordBean" ^M scope="request"/>^M is it ok for the page to refer to more than one bean ?if i wish to use an other bean do i simply add it below this one like this - <top:useBean id="bean" ^M classname="com.title.bob.top.beans.ColumnBean" ^M scope="request"/>^M cheers chris
Can you give two variables in a Java program the same name? Same reason. if you have two beans with the same name (id), how could tell them apart? bear
The ids are nothing but variable names. You can see that ids cannot be dynamic i.e. it is statis because JSP compiler declares variables with the names passed.