Jul 5, 2006 #1 arm207 Programmer Jun 13, 2006 26 US hi, I'm new to JSP but know java. Do you guys know of an example where you can have an html UI and pass the user input to a jsp page. How is that done? thank you
hi, I'm new to JSP but know java. Do you guys know of an example where you can have an html UI and pass the user input to a jsp page. How is that done? thank you
Jul 6, 2006 #2 Diancecht Programmer Jan 8, 2004 4,042 ES Things use to work the opposite way: JSP pages produce HTML output. Could you be more explicit? Cheers, Dian Upvote 0 Downvote
Things use to work the opposite way: JSP pages produce HTML output. Could you be more explicit? Cheers, Dian
Jul 8, 2006 Thread starter #3 arm207 Programmer Jun 13, 2006 26 US here's what I want to do. have a .jsp page that user comes to, and puts in values in html form , and I want to pass those variables in the .jsp form somewhere else. Is there an example that shows how I can use JSP to have access to values within html input box? Upvote 0 Downvote
here's what I want to do. have a .jsp page that user comes to, and puts in values in html form , and I want to pass those variables in the .jsp form somewhere else. Is there an example that shows how I can use JSP to have access to values within html input box?
Jul 10, 2006 #4 Diancecht Programmer Jan 8, 2004 4,042 ES Well, when the form is submitted, where are you planning to submit it? Another jsp? A servlet? Cheers, Dian Upvote 0 Downvote
Well, when the form is submitted, where are you planning to submit it? Another jsp? A servlet? Cheers, Dian
Jul 14, 2006 #5 royc75 Programmer Jun 1, 2006 127 GB Try this: http://marakana.com/examples/java_jsp/login_system.html Upvote 0 Downvote