1. Using request.setAttribute in a JSP page stackoverflow.comIs it possible to use |
2. Hi, what's wrong about request.getSession().setAttribute() stackoverflow.comI use to pass data between *.java and *.jsp, since this is a MVC framework, it will go by the *.java first. so i used request.getSession().setAttribute("test", "01010101010") to save the value, ... |
3. Using $request.session.setAttribute to store a dropdown's setting stackoverflow.comI'm trying to store a drop-down's setting that's controlling how many items to display in a roster. How do I go about doing this? The dropdown is using onChange to sort ... |
4. Getting null values while using request.setAttribute and get stackoverflow.comI need to pass a variable from Admin.java file to index.jsp. I get the value when I print it in Admin.java. I need to pass that value to another variable which ... |
5. request.get/setAttribute() vs this.getServletContext().get/setAttribute() stackoverflow.comwhat's the difference between
for the request to work, but you ... |
6. do request.setAttribute in jsp page and request.getAttribute in java code stackoverflow.comIs this possible that i do request.setAttribute in jsp code and retrive the value using request.getAttribute in java struts code. |
7. Servlet not forwarding to jsp when session.setAttribute or request.setAttribute is called stackoverflow.comMy Servlet is not forwarding to my JSP, when I use |
8. request.setAttribute coderanch.com |
9. difference b/t session.setAttribute and request.setAttriute coderanch.com |
10. i do not understand servlet request.setAttribute ~ coderanch.comi'm newbie in struts, i do have difficulty of understanding on how request.setAttribute work , what is the value i get after request.setAttribute? SignupAction1.java import javax.servlet.http.*; import org.apache.struts.action.*; public class SignupAction1 extends Action { public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { ContactFormBean userBean = (ContactFormBean)form; String firstName = userBean.getFirstName(); String lastName = userBean.getLastName(); String email ... |
11. request.setAttribute() in servlet coderanch.com |
12. problem with request.setAttribute in jsp coderanch.com |
13. request.setAttribute() and request.getAttribute() coderanch.comFollowing is the code i have written in A.jsp page <% String select[] = request.getParameterValues("id"); if (select != null && select.length != 0) { out.println("You have selected: "); for (int i = 0; i < select.length; i++) { out.println(select[i]); } } %> <% request.setAttribute("idvalues",select); Following is the code i have written in B.jsp page <% String headname[] = new String[100]; headname=(String[]) ... |
14. Problem with request.setAttribute() in jsp page forums.oracle.com |
15. problem with request.setAttribute() when accessing it in JSP forums.oracle.comHi, i have code like this ArrayList allFields; public ArrayList getFields() { // it returns some ArrayList with values like return allFields // allFields is ArrayList instance } then im accessing the allFields using ArrayList sampleArray= getFields(); request.setAttribute("name",sampleArray); allFields.clear(); now, when i'm accesing it in JSP using request.getAttribute("name") it returns null, can u help me plz thanx in advance |
16. request.setAttribute() - servlet, request.getAttribute() - jsp forums.oracle.comHi all, I know it's been writter all over but I cannot find a concrete explanation of what is happening. Here is the thing: I have a |
17. request.setAttribute() and jsp forums.oracle.com |