Last week, we had the author of TDD for a Shopping Website LiveProject. Friday at 11am Ranch time, Steven Solomon will be hosting a live TDD session just for us. See for the agenda and registration link
Last week, we had the author of TDD for a Shopping Website LiveProject. Friday at 11am Ranch time, Steven Solomon will be hosting a live TDD session just for us. See for the agenda and registration link
Hi, can anybody tell me how to pass parameter from a form in a JSP page to a java program??? <FORM ACTION="http://localhost:8080/SDC1/servlet/parserupload?Name=<%= session.getAttribute("theName")%>" METHOD=POST ENCTYPE="multipart/form-data"> the above codes is the form tag but how to put <%=session.getAttribute("theName")%> into a string so that i can pass the string to my program???
i usually use a string to store the url and pass that string to the action..this is shown below.. ------------------------- <% String att = (String) session.getAttribute("theName"); String url = "http://localhost:8080/SDC1/servlet/parserupload?Name="+att; %> <FORM ACTION=<%=url%> METHOD=POST ENCTYPE="multipart/form-data"> --------------- hope this helps solve u'r problem